:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg: #11271B;
  --background: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --glow: #57E38D;
  --gold: #F2C14E;
  --divider: #1E3A2A;
  --deep-green: #0A4B2C;
}

.page-tintc {
  background-color: var(--background); /* #08160F */
  color: var(--text-main); /* #F2FFF6 */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Hero Section */
.page-tintc__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 40px;
  background-color: var(--card-bg); /* #11271B */
  overflow: hidden;
}

.page-tintc__hero-image-wrapper {
  width: 100%;
  max-height: 500px; /* Limit height for hero image */
  overflow: hidden;
  position: relative;
}

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

.page-tintc__hero-content {
  background-color: var(--background); /* #08160F */
  color: var(--text-main); /* #F2FFF6 */
  padding: 30px 20px;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

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

.page-tintc__main-title {
  font-size: clamp(2em, 5vw, 3.2em);
  color: var(--gold); /* #F2C14E */
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
}

.page-tintc__description {
  font-size: 1.1em;
  color: var(--text-secondary); /* #A7D9B8 */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA Buttons */
.page-tintc__cta-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  background: var(--button-gradient);
  color: #FFFFFF; /* Ensure contrast on green */
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-tintc__cta-button--secondary {
  background: transparent;
  border: 2px solid var(--deep-green); /* #0A4B2C */
  color: var(--text-main); /* #F2FFF6 */
}

.page-tintc__cta-button--secondary:hover {
  background: var(--deep-green); /* #0A4B2C */
  color: #FFFFFF;
}

.page-tintc__cta-button--outline {
  background: transparent;
  border: 2px solid var(--glow); /* #57E38D */
  color: var(--text-main); /* #F2FFF6 */
}

.page-tintc__cta-button--outline:hover {
  background: var(--deep-green); /* #0A4B2C */
  color: #FFFFFF;
  border-color: var(--deep-green);
}

/* Latest News Section */
.page-tintc__latest-news {
  padding: 60px 0;
  background-color: var(--background); /* #08160F */
  color: var(--text-main); /* #F2FFF6 */
}

.page-tintc__section-title {
  font-size: clamp(1.8em, 4vw, 2.8em);
  color: var(--gold); /* #F2C14E */
  text-align: center;
  margin-bottom: 15px;
}

.page-tintc__section-subtitle {
  font-size: 1.1em;
  color: var(--text-secondary); /* #A7D9B8 */
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-tintc__news-card {
  background-color: var(--card-bg); /* #11271B */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-tintc__news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.page-tintc__card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

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

.page-tintc__card-title a {
  color: var(--text-main); /* #F2FFF6 */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-tintc__card-title a:hover {
  color: var(--gold); /* #F2C14E */
}

.page-tintc__card-meta {
  font-size: 0.9em;
  color: var(--text-secondary); /* #A7D9B8 */
  margin-bottom: 15px;
}

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

.page-tintc__read-more-button {
  display: inline-block;
  padding: 8px 15px;
  border-radius: 5px;
  background-color: var(--deep-green); /* #0A4B2C */
  color: #FFFFFF;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

.page-tintc__read-more-button:hover {
  background-color: var(--primary-color); /* #11A84E */
}

.page-tintc__view-all-button-wrapper {
  text-align: center;
}

/* Promo CTA Section */
.page-tintc__promo-cta {
  padding: 60px 0;
  background-color: var(--primary-color); /* #11A84E */
  color: #FFFFFF; /* White text for contrast */
  text-align: center;
}

.page-tintc__promo-cta .page-tintc__section-title {
  color: #FFFFFF; /* White title for contrast */
}

.page-tintc__promo-cta .page-tintc__section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.page-tintc__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

/* FAQ Section */
.page-tintc__faq-section {
  padding: 60px 0;
  background-color: var(--background); /* #08160F */
  color: var(--text-main); /* #F2FFF6 */
}

.page-tintc__faq-list {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 40px;
}

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

.page-tintc__faq-item summary {
  list-style: none; /* Hide default marker */
  cursor: pointer;
  padding: 18px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 1.1em;
  color: var(--text-main); /* #F2FFF6 */
  transition: background-color 0.3s ease;
}

.page-tintc__faq-item summary::-webkit-details-marker {
  display: none; /* Hide default marker for webkit browsers */
}

.page-tintc__faq-item summary:hover {
  background-color: var(--deep-green); /* #0A4B2C */
}

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

.page-tintc__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--gold); /* #F2C14E */
}

.page-tintc__faq-answer {
  padding: 0 25px 18px 25px;
  font-size: 1em;
  color: var(--text-secondary); /* #A7D9B8 */
  line-height: 1.7;
}

.page-tintc__faq-answer p {
  margin-bottom: 10px;
}
.page-tintc__faq-answer p:last-child {
  margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-tintc__hero-section {
    padding-bottom: 20px;
  }

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

  .page-tintc__main-title {
    font-size: 2em;
  }

  .page-tintc__description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-tintc__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

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

  .page-tintc__section-title {
    font-size: 1.8em;
  }

  .page-tintc__section-subtitle {
    font-size: 1em;
    margin-bottom: 30px;
  }

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

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

  .page-tintc__card-title {
    font-size: 1.2em;
  }

  .page-tintc__read-more-button {
    font-size: 0.85em;
  }

  .page-tintc__promo-cta,
  .page-tintc__latest-news,
  .page-tintc__faq-section {
    padding: 40px 0;
  }

  .page-tintc__faq-item summary {
    padding: 15px 20px;
    font-size: 1em;
  }

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

  /* Image responsiveness for mobile */
  .page-tintc img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-tintc__hero-image-wrapper,
  .page-tintc__news-card,
  .page-tintc__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure containers don't overflow */
  }

  /* Video responsiveness for mobile (if any) */
  .page-tintc video,
  .page-tintc__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-tintc__video-section,
  .page-tintc__video-container,
  .page-tintc__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-tintc__video-section {
    padding-top: 10px !important;
  }
}