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

.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;
  padding: 60px 0;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background-color: #08160F; /* Background */
  overflow: hidden;
}

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

.page-tintc__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
  display: block;
}

.page-tintc__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
}

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

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

.page-tintc__section-title {
  font-size: 2.5rem;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

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

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

.page-tintc__btn-primary:hover {
  opacity: 0.9;
}

.page-tintc__btn-secondary {
  display: inline-block;
  background: transparent;
  color: #2AD16F;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin: 10px;
  border: 2px solid #2AD16F;
}

.page-tintc__btn-secondary:hover {
  background-color: #2AD16F;
  color: #ffffff;
}

.page-tintc__dark-bg {
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
}

.page-tintc__light-bg {
  background-color: #0A4B2C; /* Deep Green, for contrast */
  color: #F2FFF6; /* Text Main */
}

.page-tintc__dark-section {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
  padding: 60px 0;
}

.page-tintc__featured-news {
  padding: 60px 0;
}

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

.page-tintc__news-card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  border: 1px solid #2E7A4E; /* Border */
}

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

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

.page-tintc__card-content {
  padding: 25px;
}

.page-tintc__card-title {
  font-size: 1.4rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

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

.page-tintc__card-title a:hover {
  color: #57E38D; /* Glow */
}

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

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

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

.page-tintc__read-more:hover {
  text-decoration: underline;
}

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

.page-tintc__latest-updates {
  padding: 60px 0;
}

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

.page-tintc__update-item {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 25px;
  border: 1px solid #2E7A4E; /* Border */
}

.page-tintc__update-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-tintc__update-title a {
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
}

.page-tintc__update-title a:hover {
  color: #57E38D; /* Glow */
}

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

.page-tintc__update-text {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-tintc__why-choose {
  padding: 60px 0;
}

.page-tintc__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-tintc__feature-item {
  text-align: center;
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #2E7A4E; /* Border */
}

.page-tintc__feature-icon {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-tintc__feature-title {
  font-size: 1.3rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
}

.page-tintc__feature-text {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-tintc__faq-section {
  padding: 60px 0;
}

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

.page-tintc__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  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;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  background-color: #11271B; /* Card BG */
  transition: background-color 0.3s ease;
}

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

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

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

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

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

.page-tintc__cta-section {
  padding: 60px 0;
  text-align: center;
  background-color: #0A4B2C; /* Deep Green */
}

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

/* Responsive styles */
@media (max-width: 1024px) {
  .page-tintc__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-tintc__section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .page-tintc {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-tintc__container {
    padding: 0 15px;
  }
  .page-tintc__hero-section {
    padding: 40px 0;
    padding-top: 10px !important;
  }
  .page-tintc__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  .page-tintc__subtitle {
    font-size: 1rem;
  }
  .page-tintc__section-title {
    font-size: 1.8rem;
  }
  .page-tintc__section-description {
    font-size: 0.95rem;
  }
  .page-tintc__news-grid, .page-tintc__update-list, .page-tintc__feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-tintc__news-card, .page-tintc__update-item, .page-tintc__feature-item, .page-tintc__faq-item {
    margin-left: 15px;
    margin-right: 15px;
    width: auto;
    max-width: calc(100% - 30px);
  }
  .page-tintc__card-image, .page-tintc__feature-icon {
    height: auto;
    max-width: 100% !important;
    width: 100% !important;
    display: block !important;
  }
  .page-tintc img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-tintc__section,
  .page-tintc__card,
  .page-tintc__container,
  .page-tintc__hero-section,
  .page-tintc__featured-news,
  .page-tintc__latest-updates,
  .page-tintc__why-choose,
  .page-tintc__faq-section,
  .page-tintc__cta-section,
  .page-tintc__news-card,
  .page-tintc__update-item,
  .page-tintc__feature-item,
  .page-tintc__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no overflow */
  }
  .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;
    margin-left: 0;
    margin-right: 0;
  }
  .page-tintc__hero-content .page-tintc__btn-primary {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-tintc__cta-section .page-tintc__btn-primary,
  .page-tintc__cta-section .page-tintc__btn-secondary {
    display: block;
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
  }
  .page-tintc__cta-section .page-tintc__btn-secondary {
    margin-bottom: 0;
  }
}