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

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

.page-tintc__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 60px; /* Space below content */
  padding-top: 10px; /* Minimal top padding */
  background-color: #08160F;
  overflow: hidden;
}

.page-tintc__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 500px;
  margin-bottom: 30px; /* Space between image and content */
}

.page-tintc__hero-content {
  text-align: center;
  padding: 0 20px; /* Use padding for content, not margin-top for overlap */
  max-width: 900px;
}

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

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

.page-tintc__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

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

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

.page-tintc__featured-news,
.page-tintc__latest-news,
.page-tintc__faq-section,
.page-tintc__cta-section {
  padding: 80px 0;
  background-color: #08160F; /* Background from custom colors */
}

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

.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 BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

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

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

.page-tintc__card-title {
  font-size: 1.5rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
  line-height: 1.3;
  flex-grow: 1;
}

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

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

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

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

.page-tintc__read-more {
  display: inline-block;
  color: #2AD16F; /* Highlight color */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  margin-top: auto; /* Push to bottom */
}

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

.page-tintc__news-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.page-tintc__list-item {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.page-tintc__list-item:hover {
  transform: translateY(-5px);
}

.page-tintc__list-image {
  width: 300px; /* Fixed width for list item image */
  height: 200px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
  min-width: 200px;
  min-height: 200px;
}

.page-tintc__list-content {
  padding: 25px;
  flex-grow: 1;
}

.page-tintc__list-title {
  font-size: 1.3rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 8px;
  line-height: 1.3;
}

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

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

.page-tintc__list-date {
  font-size: 0.85rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 10px;
}

.page-tintc__list-excerpt {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 15px;
}

.page-tintc__pagination {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  gap: 10px;
}

.page-tintc__pagination-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-weight: 600;
}

.page-tintc__pagination-link:hover,
.page-tintc__pagination-link--active {
  background-color: #2AD16F; /* Highlight color */
  color: #08160F;
}

.page-tintc__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-tintc__cta-button--secondary {
  background: #11271B; /* Card BG */
  border: 2px solid #2AD16F;
  color: #2AD16F;
}

.page-tintc__cta-button--secondary:hover {
  background: #2AD16F;
  color: #08160F;
}

.page-tintc__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-tintc__faq-item {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-tintc__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.15rem;
  color: #F2FFF6; /* Text Main */
  font-weight: 600;
  background-color: #1E3A2A; /* Divider for question header */
  border-bottom: 1px solid #2E7A4E; /* Border */
}

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

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

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

.page-tintc__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  color: #2AD16F;
  transition: transform 0.3s ease;
}

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

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

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

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-tintc__list-item {
    flex-direction: column;
    text-align: center;
  }

  .page-tintc__list-image {
    width: 100%;
    height: 250px;
  }

  .page-tintc__list-content {
    padding: 20px;
  }
}

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

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

  .page-tintc__description {
    font-size: 1rem;
  }

  .page-tintc__cta-button {
    padding: 12px 25px;
    font-size: 0.95rem;
  }

  .page-tintc__section-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    margin-bottom: 30px;
  }

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

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

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

  .page-tintc__list-item {
    flex-direction: column;
  }

  .page-tintc__list-image {
    width: 100%;
    height: 200px;
  }

  .page-tintc__list-title {
    font-size: 1.15rem;
  }

  .page-tintc__button-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-tintc__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-tintc__button-group {
    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__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-tintc__faq-answer {
    padding: 15px 20px;
    font-size: 0.9rem;
  }

  /* Mobile image and video responsive rules */
  .page-tintc img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-tintc__section,
  .page-tintc__card,
  .page-tintc__container,
  .page-tintc__hero-section,
  .page-tintc__featured-news,
  .page-tintc__latest-news,
  .page-tintc__faq-section,
  .page-tintc__cta-section,
  .page-tintc__news-grid,
  .page-tintc__news-card,
  .page-tintc__news-list,
  .page-tintc__list-item,
  .page-tintc__button-group,
  .page-tintc__faq-list,
  .page-tintc__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden; /* Ensure no horizontal scroll */
  }

  .page-tintc__hero-section {
    padding-top: 10px !important; /* body has header-offset, this is just for visual spacing */
  }

  .page-tintc__list-item {
    padding-left: 0 !important; /* Remove padding from list item itself if it's already on container */
    padding-right: 0 !important;
  }
}

/* Ensure content images are not too small */
.page-tintc img:not(.page-tintc__hero-image) {
  min-width: 200px;
  min-height: 200px;
}
.page-tintc__card-image, .page-tintc__list-image {
  min-width: 200px;
  min-height: 200px;
}