.page-tintc {
  color: #333333; /* Default text color for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-tintc__dark-bg {
  background-color: #08160F;
  color: #F2FFF6;
}

.page-tintc__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-tintc__hero-section {
  position: relative;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding for first section */
  overflow: hidden;
}

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

.page-tintc__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Slightly dimmed to ensure text readability */
}

.page-tintc__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

.page-tintc__hero-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size */
  font-weight: bold;
  margin-bottom: 20px;
  color: #F2FFF6;
  line-height: 1.2;
}

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

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

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

.page-tintc__section-title {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: #11A84E;
}

.page-tintc__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #333333;
}

.page-tintc__latest-news-section {
  padding: 80px 0;
  background-color: #f4f7f6;
}

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

.page-tintc__news-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  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.15);
}

.page-tintc__news-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

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

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

.page-tintc__news-card-title a {
  color: #11A84E;
  text-decoration: none;
}

.page-tintc__news-card-title a:hover {
  text-decoration: underline;
}

.page-tintc__news-card-meta {
  font-size: 0.9em;
  color: #A7D9B8; /* Use secondary text color for meta on light background, ensuring contrast */
  margin-bottom: 15px;
}

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

.page-tintc__read-more-button {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5px;
  background: #22C768;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

.page-tintc__read-more-button:hover {
  background: #11A84E;
}

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

.page-tintc__view-all-news-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  background: #11A84E;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-tintc__view-all-news-button:hover {
  background: #22C768;
}

.page-tintc__cta-section {
  padding: 80px 20px;
  text-align: center;
  background-color: #11271B; /* Card BG color */
  color: #F2FFF6;
}

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

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

.page-tintc__faq-section {
  padding: 80px 0;
  background-color: #f4f7f6;
}

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

.page-tintc__faq-item {
  margin-bottom: 20px;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  overflow: hidden;
  background-color: #ffffff;
  color: #333333;
}

.page-tintc__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  background-color: #fcfcfc;
  color: #11A84E;
  border-bottom: 1px solid #E0E0E0;
}

.page-tintc__faq-item[open] .page-tintc__faq-question {
  border-bottom: 1px solid #E0E0E0;
}

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

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

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

/* Details element specific styling */
.page-tintc__faq-item summary {
  list-style: none;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-tintc__hero-title {
    font-size: clamp(1.8em, 5vw, 3em);
  }
  .page-tintc__section-title {
    font-size: 2em;
  }
  .page-tintc__cta-title {
    font-size: 2.2em;
  }
  .page-tintc__news-card-image {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .page-tintc__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }
  .page-tintc__hero-content {
    padding: 20px 15px;
  }
  .page-tintc__section-title {
    font-size: 1.8em;
  }
  .page-tintc__section-description {
    font-size: 1em;
  }
  .page-tintc__latest-news-section,
  .page-tintc__cta-section,
  .page-tintc__faq-section {
    padding: 40px 0;
  }
  .page-tintc__news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-tintc__news-card-image {
    height: 180px;
  }
  .page-tintc__news-card-title {
    font-size: 1.3em;
  }
  .page-tintc__hero-button,
  .page-tintc__view-all-news-button,
  .page-tintc__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 15px !important;
  }
  .page-tintc__cta-section .page-tintc__container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-tintc__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-tintc__faq-answer {
    padding: 15px 20px;
  }
  .page-tintc img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-tintc__section,
  .page-tintc__card,
  .page-tintc__container,
  .page-tintc__news-card,
  .page-tintc__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-tintc__hero-section .page-tintc__container {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 480px) {
  .page-tintc__hero-title {
    font-size: clamp(1.5em, 6vw, 2.5em);
  }
  .page-tintc__section-title {
    font-size: 1.5em;
  }
  .page-tintc__cta-title {
    font-size: 1.8em;
  }
  .page-tintc__news-card-image {
    height: 150px;
  }
}