.page-tintc {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main for dark backgrounds */
  background-color: #08160F; /* Background */
}

.page-tintc__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

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

.page-tintc__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-tintc__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Darken image for text readability */
}

.page-tintc__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  color: #F2FFF6;
}

.page-tintc__main-title {
  font-size: clamp(2em, 5vw, 3.5em);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #F2FFF6;
}

.page-tintc__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary */
}

.page-tintc__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-tintc__cta-button:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-tintc__section-title {
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #F2FFF6; /* Text Main */
}

.page-tintc__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #A7D9B8; /* Text Secondary */
}

.page-tintc__featured-news, .page-tintc__latest-articles, .page-tintc__cta-section, .page-tintc__faq-section {
  padding: 80px 0;
}

.page-tintc__featured-news {
  background-color: #08160F; /* Background */
}

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

.page-tintc__news-card {
  background-color: #11271B; /* Card B G */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  color: #F2FFF6; /* Text Main */
  border: 1px solid #2E7A4E; /* Border */
}

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

.page-tintc__card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

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

.page-tintc__card-title {
  font-size: 1.5em;
  margin-bottom: 10px;
  line-height: 1.3;
}

.page-tintc__card-title a {
  color: #F2FFF6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-tintc__card-title a:hover {
  color: #57E38D; /* Glow */
}

.page-tintc__card-meta {
  font-size: 0.9em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 15px;
}

.page-tintc__card-text {
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

.page-tintc__read-more {
  color: #57E38D; /* Glow */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-tintc__read-more:hover {
  color: #F2FFF6;
}

.page-tintc__latest-articles {
  background-color: #f8f9fa; /* Light background for contrast */
  color: #333333; /* Dark text for light background */
}

.page-tintc__latest-articles .page-tintc__section-title,
.page-tintc__latest-articles .page-tintc__section-description {
  color: #333333; /* Dark text */
}

.page-tintc__article-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.page-tintc__article-item {
  display: flex;
  background-color: #ffffff; /* White background for light section */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: #333333;
  border: 1px solid #e0e0e0;
}

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

.page-tintc__article-content {
  padding: 30px;
  width: 65%;
}

.page-tintc__article-title {
  font-size: 1.8em;
  margin-bottom: 10px;
  line-height: 1.3;
}

.page-tintc__article-title a {
  color: #333333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-tintc__article-title a:hover {
  color: #13994A;
}

.page-tintc__article-meta {
  font-size: 0.9em;
  color: #666666;
  margin-bottom: 15px;
}

.page-tintc__article-summary {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
}

.page-tintc__btn-secondary {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ffffff;
  color: #11A84E;
  border: 2px solid #11A84E;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
}

.page-tintc__btn-secondary:hover {
  background-color: #11A84E;
  color: #ffffff;
}

.page-tintc__view-all-button-wrapper {
  text-align: center;
  margin-top: 50px;
}

.page-tintc__cta-section {
  background-color: #11271B; /* Card B G */
  text-align: center;
  padding: 100px 0;
  color: #F2FFF6;
}

.page-tintc__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #F2FFF6;
}

.page-tintc__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #A7D9B8;
}

.page-tintc__faq-section {
  background-color: #f8f9fa; /* Light background */
  color: #333333;
}

.page-tintc__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-tintc__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.page-tintc__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.1em;
  font-weight: bold;
  color: #333333;
  cursor: pointer;
  background-color: #ffffff;
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-tintc__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for Chrome */
}

.page-tintc__faq-item[open] > .page-tintc__faq-question {
  background-color: #f1f1f1;
}

.page-tintc__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #11A84E;
}

.page-tintc__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1em;
  color: #555555;
  line-height: 1.6;
}

.page-tintc__faq-answer p {
  margin-top: 0;
  margin-bottom: 0;
}

.page-tintc__faq-answer a {
  color: #11A84E;
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-tintc__main-title {
    font-size: clamp(1.8em, 6vw, 3em);
  }
  .page-tintc__section-title {
    font-size: 2em;
  }
  .page-tintc__article-item {
    flex-direction: column;
  }
  .page-tintc__article-image {
    width: 100%;
    height: 250px;
  }
  .page-tintc__article-content {
    width: 100%;
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .page-tintc__hero-section {
    padding: 40px 0;
    padding-top: 10px !important;
  }
  .page-tintc__hero-content {
    padding: 15px;
  }
  .page-tintc__main-title {
    font-size: clamp(1.5em, 8vw, 2.5em);
  }
  .page-tintc__hero-description {
    font-size: 1em;
  }
  .page-tintc__cta-button {
    padding: 12px 25px;
    font-size: 0.9em;
  }

  .page-tintc__featured-news, .page-tintc__latest-articles, .page-tintc__cta-section, .page-tintc__faq-section {
    padding: 50px 0;
  }
  .page-tintc__section-title {
    font-size: 1.8em;
  }
  .page-tintc__section-description {
    font-size: 0.95em;
  }

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

  .page-tintc__news-card, .page-tintc__article-item {
    margin: 0 15px;
  }
  .page-tintc__card-title {
    font-size: 1.3em;
  }
  .page-tintc__article-title {
    font-size: 1.4em;
  }
  .page-tintc__article-image {
    height: 200px;
  }

  .page-tintc__cta-title {
    font-size: 2em;
  }
  .page-tintc__cta-description {
    font-size: 1em;
  }

  .page-tintc__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-tintc__faq-answer {
    padding: 0 20px 15px 20px;
  }

  /* Mobile responsive for images, videos, buttons */
  .page-tintc img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-tintc video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-tintc__hero-image-wrapper,
  .page-tintc__news-card,
  .page-tintc__article-item,
  .page-tintc__cta-section,
  .page-tintc__faq-section,
  .page-tintc__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-tintc__cta-button,
  .page-tintc__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-tintc__view-all-button-wrapper {
    padding: 0 15px;
    box-sizing: border-box;
  }
}

/* Text contrast fixes for light background sections */
.page-tintc__light-bg .page-tintc__text-contrast-fix {
  color: #333333 !important;
}

.page-tintc__light-bg .page-tintc__read-more {
  color: #11A84E;
}

.page-tintc__light-bg .page-tintc__read-more:hover {
  color: #13994A;
}

.page-tintc__article-item .page-tintc__read-more {
  color: #11A84E;
}

.page-tintc__article-item .page-tintc__read-more:hover {
  color: #13994A;
}