.page-tintc {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main); /* Default text color, adjusted by smart contrast */
  background-color: var(--bg); /* Main background color */
}

/* Smart contrast for main sections */
.page-tintc__dark-bg {
  background-color: var(--bg); /* #08160F */
  color: var(--text-main); /* #F2FFF6 */
}

.page-tintc__light-bg {
  background-color: #ffffff; /* Use white for contrast on light sections */
  color: #333333; /* Dark text for light background */
}

.page-tintc__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 10px; /* Small padding, body handles header offset */
}

.page-tintc__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-tintc__hero-content {
  position: relative; /* Not absolute, to avoid overlaying on image */
  padding: 40px 20px;
  max-width: 900px;
  z-index: 2;
  margin-top: -100px; /* Adjust as needed for visual flow, but not overlaying */
  background: rgba(17, 39, 27, 0.8); /* Card BG with transparency */
  border-radius: 8px;
}

.page-tintc__main-title {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--text-main); /* #F2FFF6 */
  line-height: 1.2;
}

.page-tintc__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--text-secondary); /* #A7D9B8 */
}

.page-tintc__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
}

.page-tintc__cta-buttons--center {
  justify-content: center;
  margin-top: 40px;
}

.page-tintc__btn-primary,
.page-tintc__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%; /* For mobile responsiveness */
}

.page-tintc__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
}

.page-tintc__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-tintc__btn-secondary {
  background: transparent;
  color: var(--primary-color); /* #11A84E */
  border: 2px solid var(--primary-color); /* #11A84E */
}

.page-tintc__btn-secondary:hover {
  background: var(--primary-color); /* #11A84E */
  color: #ffffff;
  transform: translateY(-2px);
}

.page-tintc__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-tintc__featured-news {
  padding: 80px 0;
  text-align: center;
}

.page-tintc__section-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: bold;
  margin-bottom: 20px;
  color: #333333; /* Dark text for light background */
}

.page-tintc__section-description {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #555555; /* Slightly lighter dark text */
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-tintc__news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-tintc__news-card {
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: left;
}

.page-tintc__news-card:hover {
  transform: translateY(-5px);
}

.page-tintc__card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.page-tintc__news-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-tintc__card-content {
  padding: 20px;
}

.page-tintc__card-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333333;
}

.page-tintc__card-title:hover {
  color: var(--primary-color); /* #11A84E */
}

.page-tintc__card-excerpt {
  font-size: 0.95rem;
  color: #666666;
  margin-bottom: 15px;
}

.page-tintc__card-date {
  font-size: 0.85rem;
  color: #999999;
}

.page-tintc__content-area {
  padding: 80px 0;
}

.page-tintc__sub-title {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--text-main); /* #F2FFF6 */
}

.page-tintc__text-block {
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--text-secondary); /* #A7D9B8 */
}

.page-tintc__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--text-secondary); /* #A7D9B8 */
}

.page-tintc__list-item {
  margin-bottom: 10px;
}

.page-tintc__list-item strong {
  color: var(--text-main); /* #F2FFF6 */
}

.page-tintc__content-image {
  width: 100%;
  height: auto;
  margin: 30px 0;
  border-radius: 8px;
  display: block;
}

.page-tintc__faq-list {
  margin-top: 40px;
}

.page-tintc__faq-item {
  background-color: var(--card-bg); /* #11271B */
  border: 1px solid var(--border); /* #2E7A4E */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-tintc__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--text-main); /* #F2FFF6 */
  cursor: pointer;
  background-color: var(--card-bg); /* #11271B */
  transition: background-color 0.3s ease;
}

.page-tintc__faq-question:hover {
  background-color: rgba(17, 39, 27, 0.7);
}

.page-tintc__faq-qtext {
  flex-grow: 1;
}

.page-tintc__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--primary-color); /* #11A84E */
}

.page-tintc__faq-item[open] .page-tintc__faq-toggle {
  color: var(--gold); /* #F2C14E */
}

.page-tintc__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  color: var(--text-secondary); /* #A7D9B8 */
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-tintc__hero-content {
    margin-top: -50px;
    padding: 30px 15px;
  }
}

@media (max-width: 768px) {
  .page-tintc {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .page-tintc__hero-section {
    padding: 30px 15px;
    padding-top: 10px !important; /* body handles header offset */
  }

  .page-tintc__hero-content {
    margin-top: -30px;
    padding: 20px 15px;
  }

  .page-tintc__main-title {
    font-size: clamp(1.6rem, 8vw, 2rem);
  }

  .page-tintc__hero-description {
    font-size: 1rem;
  }

  .page-tintc__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-tintc__btn-primary,
  .page-tintc__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 15px !important;
  }

  .page-tintc__featured-news,
  .page-tintc__content-area {
    padding: 40px 0;
  }

  .page-tintc__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-tintc__section-title {
    font-size: clamp(1.3rem, 6vw, 1.8rem);
  }

  .page-tintc__section-description {
    font-size: 0.95rem;
  }

  .page-tintc__news-grid {
    grid-template-columns: 1fr;
  }

  .page-tintc__news-image {
    height: 180px;
  }

  .page-tintc__card-title {
    font-size: 1.1rem;
  }

  .page-tintc__sub-title {
    font-size: clamp(1.2rem, 5vw, 1.5rem);
  }

  .page-tintc__text-block,
  .page-tintc__list,
  .page-tintc__list-item,
  .page-tintc__faq-answer {
    font-size: 0.95rem;
  }

  .page-tintc__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  /* Ensure all images are responsive */
  .page-tintc img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* All containers with images should be responsive */
  .page-tintc__news-card,
  .page-tintc__card-content,
  .page-tintc__content-area,
  .page-tintc__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}