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

/* Hero Section */
.page-tintc__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Ensure image is above content */
  align-items: center;
  justify-content: center;
  padding-bottom: 60px; /* Space below content */
  padding-top: 10px; /* Small top padding, body handles header offset */
  box-sizing: border-box;
  overflow: hidden; /* Prevent content overflow */
}

.page-tintc__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-tintc__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 200px; /* Minimum image size */
}

.page-tintc__hero-content {
  max-width: 900px;
  text-align: center;
  padding: 40px 20px;
  z-index: 1; /* Ensure text is above any background elements */
  box-sizing: border-box;
}

.page-tintc__main-title {
  font-size: clamp(2rem, 5vw, 3.5rem); /* Responsive H1 font size */
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-tintc__intro-text {
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA Button - Primary Style */
.page-tintc__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
  max-width: 100%; /* Ensure responsiveness */
  box-sizing: border-box;
  white-space: normal; /* Allow text wrap */
  word-wrap: break-word; /* Allow text wrap */
}

.page-tintc__cta-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-tintc__cta-button--large {
    font-size: 1.3rem;
    padding: 18px 35px;
}

/* General Section Styles */
.page-tintc__section {
  padding: 80px 0;
  box-sizing: border-box;
}

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

.page-tintc__section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-tintc__section-description {
  font-size: 1.05rem;
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

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

.page-tintc__article-card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 200px; /* Minimum card height */
  display: flex;
  flex-direction: column;
}

.page-tintc__article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.page-tintc__article-title {
  font-size: 1.4rem;
  color: #F2FFF6; /* Text Main */
  margin: 20px 20px 10px 20px;
  font-weight: 600;
}

.page-tintc__article-title a {
  color: inherit;
  text-decoration: none;
}

.page-tintc__article-title a:hover {
  color: #2AD16F; /* Highlight color */
}

.page-tintc__article-meta {
  font-size: 0.9rem;
  color: #A7D9B8; /* Text Secondary */
  margin: 0 20px 15px 20px;
}

.page-tintc__article-excerpt {
  font-size: 1rem;
  color: #F2FFF6; /* Text Main */
  margin: 0 20px 20px 20px;
  flex-grow: 1;
}

.page-tintc__read-more {
  display: inline-block;
  color: #2AD16F; /* Primary color */
  text-decoration: none;
  font-weight: 600;
  margin: 0 20px 20px 20px;
  transition: color 0.3s ease;
}

.page-tintc__read-more:hover {
  color: #57E38D; /* Glow color */
}

/* Content Blocks (Image + Text) */
.page-tintc__content-block {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.page-tintc__content-block:last-of-type {
  margin-bottom: 0;
}

.page-tintc__content-block--reverse {
  flex-direction: row-reverse;
}

.page-tintc__content-image {
  flex: 0 0 45%; /* Fixed width on desktop */
  max-width: 45%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  min-height: 200px; /* Minimum image size */
}

.page-tintc__text-content {
  flex: 1;
}

.page-tintc__sub-title {
  font-size: 1.6rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-tintc__text-content p {
  margin-bottom: 15px;
  color: #F2FFF6; /* Text Main */
}

.page-tintc__text-content p a {
  color: #2AD16F; /* Primary color for links */
  text-decoration: underline;
}

.page-tintc__text-content p a:hover {
  color: #57E38D; /* Glow color */
}

/* Dark background sections */
.page-tintc__dark-bg {
  background-color: #0A4B2C; /* Deep Green */
}

/* Conclusion Section */
.page-tintc__conclusion {
  text-align: center;
  padding: 80px 20px;
}

.page-tintc__conclusion-text {
  font-size: 1.2rem;
  color: #F2FFF6; /* Text Main */
  max-width: 900px;
  margin: 0 auto 40px auto;
}

/* FAQ Section */
.page-tintc__faq-section {
  padding-top: 40px;
  padding-bottom: 80px;
}

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

.page-tintc__faq-item {
  background-color: #11271B; /* Card BG */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  border: 1px solid #2E7A4E; /* Border color */
}

.page-tintc__faq-item summary {
  list-style: none; /* Hide default marker */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  background-color: #11271B; /* Card BG */
  position: relative;
  transition: background-color 0.3s ease;
}

.page-tintc__faq-item summary:hover {
  background-color: #1E3A2A; /* Divider color for hover */
}

.page-tintc__faq-item summary::-webkit-details-marker {
  display: none;
}

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

.page-tintc__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 15px;
  color: #2AD16F; /* Primary color */
}

.page-tintc__faq-item[open] .page-tintc__faq-toggle {
  content: "−";
}

.page-tintc__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
}

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

  .page-tintc__main-title {
    font-size: clamp(1.8rem, 5vw, 3rem);
  }

  .page-tintc__intro-text {
    font-size: 1rem;
  }

  .page-tintc__section {
    padding: 60px 0;
  }

  .page-tintc__article-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .page-tintc__content-block {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .page-tintc__content-block--reverse {
    flex-direction: column; /* Revert to default for mobile */
  }

  .page-tintc__content-image {
    max-width: 80%; /* Adjust for smaller screens */
    flex: none;
  }

  .page-tintc__text-content {
    text-align: left; /* Keep text aligned left */
  }

  .page-tintc__sub-title {
    font-size: 1.4rem;
    text-align: center;
  }

  .page-tintc__text-content p {
    text-align: left;
  }
}

@media (max-width: 768px) {
  /* Image Responsiveness */
  .page-tintc img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Image Container Responsiveness */
  .page-tintc__hero-image-wrapper,
  .page-tintc__article-card,
  .page-tintc__content-block,
  .page-tintc__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Prevent horizontal scroll */
  }

  /* Video Responsiveness (if any video is added) */
  .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; /* Small top padding for video section */
  }

  /* Button Responsiveness */
  .page-tintc__cta-button,
  .page-tintc__btn-primary,
  .page-tintc__btn-secondary,
  .page-tintc a[class*="button"],
  .page-tintc a[class*="btn"] {
    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__cta-buttons,
  .page-tintc__button-group,
  .page-tintc__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-tintc__hero-section {
    padding-bottom: 40px;
    padding-top: 10px; /* Small top padding, body handles header offset */
  }

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

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

  .page-tintc__section {
    padding: 40px 0;
  }

  .page-tintc__section-description {
    margin-bottom: 30px;
  }

  .page-tintc__article-card {
    margin: 0 auto;
  }

  .page-tintc__content-image {
    max-width: 100%;
  }

  .page-tintc__sub-title {
    font-size: 1.3rem;
  }

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

  .page-tintc__faq-answer {
    padding: 0 20px 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-tintc__hero-content {
    padding: 15px 5px;
  }

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

  .page-tintc__intro-text {
    font-size: 0.95rem;
  }

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

  .page-tintc__article-title {
    font-size: 1.2rem;
  }
}