.page-tintc {
  background-color: #08160F;
  color: #F2FFF6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-tintc__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding for the first section */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-tintc__hero-image-wrapper {
  width: 100%;
  max-height: 500px; /* Limit height for hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-tintc__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  text-align: center;
  padding: 40px 20px;
  background: rgba(17, 39, 27, 0.85); /* Card BG with some transparency */
  border-radius: 10px;
  margin-top: -100px; /* Overlap slightly with image for visual effect, but not text on image */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

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

.page-tintc__intro-text {
  font-size: 1.1em;
  color: #A7D9B8;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.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: all 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(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-tintc__section-title {
  font-size: 2.5em;
  color: #F2FFF6;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.page-tintc__latest-news-section,
.page-tintc__featured-article-section,
.page-tintc__category-section,
.page-tintc__faq-section,
.page-tintc__cta-banner-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

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

.page-tintc__news-card {
  background-color: #11271B;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-tintc__news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

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

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

.page-tintc__news-title {
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}

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

.page-tintc__news-title a:hover {
  color: #2AD16F;
}

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

.page-tintc__news-excerpt {
  font-size: 1em;
  color: #A7D9B8;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-tintc__read-more {
  display: inline-block;
  color: #2AD16F;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  align-self: flex-start;
}

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

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

.page-tintc__article-content {
  background-color: #11271B;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.page-tintc__article-content h3 {
  font-size: 1.8em;
  color: #F2FFF6;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-tintc__article-content p {
  margin-bottom: 15px;
  color: #A7D9B8;
  font-size: 1.05em;
  line-height: 1.7;
}

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

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

.page-tintc__category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  background-color: #11271B;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding-bottom: 20px;
}

.page-tintc__category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.page-tintc__category-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 15px;
}

.page-tintc__category-title {
  font-size: 1.3em;
  color: #F2FFF6;
  font-weight: 600;
  text-align: center;
  padding: 0 15px;
}

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

.page-tintc__faq-list {
  background-color: #11271B;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  padding: 30px;
}

.page-tintc__faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid #2E7A4E;
  padding-bottom: 15px;
}

.page-tintc__faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.page-tintc__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 10px 0;
  font-size: 1.15em;
  font-weight: 600;
  color: #F2FFF6;
  list-style: none;
}

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

.page-tintc__faq-toggle {
  font-size: 1.5em;
  color: #2AD16F;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-tintc__faq-item[open] .page-tintc__faq-toggle {
  transform: rotate(45deg);
}

.page-tintc__faq-answer {
  padding-top: 10px;
  padding-left: 20px;
  color: #A7D9B8;
  font-size: 1em;
  line-height: 1.7;
}

.page-tintc__cta-banner-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #0A4B2C; /* Deep Green */
  border-radius: 15px;
  padding: 50px 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.page-tintc__cta-banner-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.2;
}

.page-tintc__cta-banner-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.page-tintc__cta-banner-title {
  font-size: 2.2em;
  color: #F2FFF6;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.page-tintc__cta-banner-description {
  font-size: 1.1em;
  color: #A7D9B8;
  margin-bottom: 30px;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-tintc__main-title {
    font-size: clamp(2em, 5vw, 2.8em);
  }
  .page-tintc__section-title {
    font-size: 2em;
  }
  .page-tintc__hero-content {
    margin-top: -80px;
  }
}

@media (max-width: 768px) {
  .page-tintc__hero-section {
    padding-bottom: 40px;
  }
  .page-tintc__hero-content {
    margin-top: -60px;
    padding: 30px 15px;
  }
  .page-tintc__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }
  .page-tintc__intro-text {
    font-size: 1em;
  }
  .page-tintc__cta-button {
    padding: 12px 25px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-tintc__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-tintc__news-grid,
  .page-tintc__category-grid {
    grid-template-columns: 1fr;
  }
  .page-tintc__latest-news-section,
  .page-tintc__featured-article-section,
  .page-tintc__category-section,
  .page-tintc__faq-section,
  .page-tintc__cta-banner-section {
    padding: 40px 15px;
  }
  .page-tintc__news-card,
  .page-tintc__category-card {
    margin-bottom: 20px;
  }
  .page-tintc__article-content {
    padding: 25px;
  }
  .page-tintc__article-content h3 {
    font-size: 1.5em;
  }
  .page-tintc__cta-banner-title {
    font-size: 1.8em;
  }
  .page-tintc__cta-banner-description {
    font-size: 1em;
  }
  .page-tintc__faq-question {
    font-size: 1em;
  }
  .page-tintc__faq-answer {
    padding-left: 10px;
  }

  /* Image responsive rules */
  .page-tintc img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-tintc__hero-image-wrapper,
  .page-tintc__news-card,
  .page-tintc__category-card,
  .page-tintc__article-content,
  .page-tintc__cta-banner-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-tintc__hero-section {
    padding-top: 10px !important;
  }

  /* Button container mobile adapt */
  .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__view-all-button-wrapper .page-tintc__cta-button {
    width: calc(100% - 30px) !important; /* Adjust for padding */
  }

}

/* Ensure contrast for text */
.page-tintc p,
.page-tintc li,
.page-tintc__news-excerpt,
.page-tintc__intro-text,
.page-tintc__faq-answer,
.page-tintc__cta-banner-description {
  color: #A7D9B8; /* Secondary Text Color */
}

.page-tintc h1,
.page-tintc h2,
.page-tintc h3,
.page-tintc__news-title a,
.page-tintc__cta-banner-title,
.page-tintc__faq-question {
  color: #F2FFF6; /* Main Text Color */
}

.page-tintc__read-more,
.page-tintc__faq-toggle {
  color: #2AD16F; /* Green accent for links/toggles */
}

.page-tintc__cta-button {
  color: #F2FFF6; /* Button text is light */
}

/* No CSS filter on images */
.page-tintc img {
  filter: none; /* Ensure no filter is applied */
}