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

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

.page-tintc__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 60px 0;
  padding-top: 10px; /* Small top padding, body handles header offset */
}

.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;
  filter: brightness(0.4); /* Darken image for text readability */
}

.page-tintc__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  background: rgba(17, 39, 27, 0.7); /* Card BG with transparency */
  border-radius: 12px;
  backdrop-filter: blur(5px);
  border: 1px solid #2E7A4E; /* Border */
}

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

.page-tintc__hero-description {
  font-size: 1.15rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

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

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

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

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

.page-tintc__news-list-section {
  padding: 80px 0;
  background-color: #08160F; /* Background */
}

.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: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #2E7A4E; /* Border */
}

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

.page-tintc__news-card-link {
  text-decoration: none;
  display: block;
  color: inherit;
}

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

.page-tintc__news-card-content {
  padding: 25px;
}

.page-tintc__news-card-title {
  font-size: 1.4rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
  line-height: 1.4;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.page-tintc__news-card-excerpt {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 15px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.page-tintc__news-card-date {
  font-size: 0.85rem;
  color: #57E38D; /* Glow */
  display: block;
}

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

.page-tintc__guides-section {
  padding: 80px 0;
  background-color: #11271B; /* Card BG */
  border-top: 1px solid #2E7A4E; /* Border */
  border-bottom: 1px solid #2E7A4E; /* Border */
}

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

.page-tintc__guide-card {
  background-color: #08160F; /* Background */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding-bottom: 25px;
  border: 1px solid #2E7A4E; /* Border */
}

.page-tintc__guide-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-tintc__guide-card-title {
  font-size: 1.3rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  padding: 0 20px;
}

.page-tintc__guide-card-text {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  padding: 0 20px;
}

.page-tintc__text-link {
  color: #57E38D; /* Glow */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-tintc__text-link:hover {
  color: #2AD16F; /* Brighter green */
  text-decoration: underline;
}

.page-tintc__community-section {
  padding: 80px 0;
  background-color: #08160F; /* Background */
}

.page-tintc__community-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.page-tintc__community-text {
  flex: 1;
  min-width: 300px;
}

.page-tintc__community-subtitle {
  font-size: 1.5rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  margin-top: 30px;
}

.page-tintc__community-text p {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

.page-tintc__community-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-tintc__community-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid #2E7A4E; /* Border */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-tintc__faq-section {
  padding: 80px 0;
  background-color: #11271B; /* Card BG */
  border-top: 1px solid #2E7A4E; /* Border */
}

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

.page-tintc__faq-item {
  background-color: #08160F; /* Background */
  border-radius: 8px;
  margin-bottom: 15px;
  border: 1px solid #2E7A4E; /* Border */
  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: bold;
  transition: background-color 0.3s ease;
}

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

.page-tintc__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #57E38D; /* Glow */
  margin-left: 15px;
}

.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 */
  line-height: 1.5;
}

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

.page-tintc__cta-banner {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(90deg, #11A84E 0%, #22C768 100%); /* Main/Auxiliary colors */
  border-top: 1px solid #2E7A4E; /* Border */
}

.page-tintc__cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-tintc__cta-description {
  font-size: 1.1rem;
  color: #F2FFF6; /* Text Main */
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-tintc__cta-button--large {
  padding: 18px 40px;
  font-size: 1.2rem;
  border-radius: 10px;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-tintc__hero-content {
    max-width: 700px;
  }
}

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

  .page-tintc__hero-section {
    padding: 40px 0;
  }

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

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

  .page-tintc__hero-description {
    font-size: 1rem;
  }

  .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__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .page-tintc__section-description {
    font-size: 0.9rem;
    margin-bottom: 30px;
  }

  .page-tintc__news-list-section,
  .page-tintc__guides-section,
  .page-tintc__community-section,
  .page-tintc__faq-section,
  .page-tintc__cta-banner {
    padding: 40px 0;
  }

  .page-tintc__news-grid, .page-tintc__guides-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .page-tintc__news-card-excerpt {
    font-size: 0.9rem;
  }

  .page-tintc__community-content {
    flex-direction: column;
  }

  .page-tintc__community-subtitle {
    font-size: 1.3rem;
  }

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

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

  .page-tintc__cta-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .page-tintc__cta-description {
    font-size: 1rem;
  }

  .page-tintc__cta-button--large {
    padding: 15px 30px;
    font-size: 1.05rem;
  }

  /* Image, video, and button responsive styles */
  .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-content,
  .page-tintc__news-card,
  .page-tintc__guide-card,
  .page-tintc__community-text,
  .page-tintc__community-image-wrapper,
  .page-tintc__faq-item,
  .page-tintc__cta-banner {
    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; /* body already handles --header-offset */
  }

  .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__cta-buttons {
    display: flex;
    flex-direction: column; 
  }
}

/* Ensure contrast for text on various backgrounds */
.page-tintc__dark-section {
  background-color: #08160F; /* Background, dark */
  color: #F2FFF6; /* Text Main, light */
}

.page-tintc__dark-section .page-tintc__section-description,
.page-tintc__dark-section p {
  color: #A7D9B8; /* Text Secondary, slightly lighter than main text */
}

/* Specific contrast for links in dark sections */
.page-tintc__dark-section .page-tintc__text-link {
  color: #57E38D; /* Glow, good contrast on dark */
}

/* Ensure no image filters */
.page-tintc img {
  filter: none; /* Remove any potential default filters */
}
.page-tintc__hero-image {
  filter: brightness(0.4); /* This is allowed for darkening, not color change */
}