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

.page-tintc__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding for hero */
  box-sizing: border-box;
  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;
  margin-bottom: 30px;
}

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

.page-tintc__hero-content {
  max-width: 900px;
  text-align: center;
  z-index: 1;
  position: relative;
}

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

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

.page-tintc__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-tintc__btn-primary,
.page-tintc__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

.page-tintc__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff; /* Ensure contrast */
  border: none;
}

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

.page-tintc__btn-secondary {
  background: transparent;
  color: #2AD16F; /* Text color matching primary button's lighter shade */
  border: 2px solid #2AD16F;
}

.page-tintc__btn-secondary:hover {
  background: rgba(42, 209, 111, 0.1);
  transform: translateY(-2px);
}

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

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

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

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

.page-tintc__category-card,
.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, box-shadow 0.3s ease;
  border: 1px solid #2E7A4E; /* Border */
}

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

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

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

.page-tintc__category-title,
.page-tintc__news-title {
  font-size: 1.4rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-tintc__news-title a {
  color: inherit;
  text-decoration: none;
}

.page-tintc__news-title a:hover {
  color: #2AD16F; /* Lighter green for hover */
}

.page-tintc__category-text,
.page-tintc__news-excerpt {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

.page-tintc__news-date {
  font-size: 0.85rem;
  color: #A7D9B8;
  display: block;
  margin-bottom: 10px;
}

.page-tintc__btn-text {
  color: #2AD16F; /* Lighter green */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-tintc__btn-text:hover {
  color: #57E38D; /* Glow */
}

.page-tintc__btn-read-more {
  display: inline-block;
  padding: 10px 20px;
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.page-tintc__btn-read-more:hover {
  background-color: #13994A;
}

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

.page-tintc__section--faq {
  background-color: #0A4B2C; /* Deep Green */
  border-top: 1px solid #2E7A4E;
  border-bottom: 1px solid #2E7A4E;
}

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

.page-tintc__faq-item {
  background-color: #11271B; /* Card BG */
  border-radius: 8px;
  margin-bottom: 15px;
  border: 1px solid #2E7A4E;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-tintc__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  list-style: none;
  user-select: none;
  transition: background-color 0.3s ease;
}

.page-tintc__faq-question:hover {
  background-color: rgba(46, 122, 78, 0.2); /* Slightly lighter hover */
}

.page-tintc__faq-item[open] .page-tintc__faq-question {
  background-color: rgba(46, 122, 78, 0.3);
  border-bottom: 1px solid #2E7A4E;
}

.page-tintc__faq-toggle {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2AD16F;
  margin-left: 15px;
}

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

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

.page-tintc__section--cta-bottom {
  padding-top: 60px;
  padding-bottom: 80px;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-tintc__hero-section {
    padding: 40px 15px;
  }

  .page-tintc__section {
    padding: 60px 15px;
  }

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

  .page-tintc__section-title {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
  }
}

@media (max-width: 768px) {
  .page-tintc {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-tintc__hero-section {
    padding: 30px 15px;
    padding-top: 10px !important;
  }

  .page-tintc__hero-image-wrapper {
    max-height: 300px;
  }

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

  .page-tintc__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }

  .page-tintc__btn-primary,
  .page-tintc__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-tintc__section {
    padding: 40px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

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

  .page-tintc__category-card,
  .page-tintc__news-card {
    margin-bottom: 20px;
  }

  .page-tintc__category-image,
  .page-tintc__news-image {
    height: 180px;
  }

  .page-tintc__category-content,
  .page-tintc__news-content {
    padding: 20px;
  }

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

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

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

  /* Image responsive rules */
  .page-tintc img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-tintc__hero-image-wrapper,
  .page-tintc__category-card,
  .page-tintc__news-card,
  .page-tintc__category-content,
  .page-tintc__news-content,
  .page-tintc__faq-list,
  .page-tintc__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
}