.page-tintc {
  color: var(--text-main, #F2FFF6); /* Default text color for the page */
  background-color: var(--bg-color, #08160F); /* Default background color for the page */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-tintc__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  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 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: var(--card-bg, #11271B);
  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: 20px;
}

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

.page-tintc__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 20px;
  border-radius: 12px;
  background: rgba(17, 39, 27, 0.85); /* Slightly darker background for text readability */
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  margin-top: -80px; /* Pull content slightly over the image for better visual flow */
}

.page-tintc__main-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--text-main, #F2FFF6);
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
}

.page-tintc__hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary, #A7D9B8);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-tintc__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.page-tintc__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--gold, #F2C14E);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-tintc__section-title--alt {
  color: var(--text-main, #F2FFF6);
}

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

.page-tintc__news-card,
.page-tintc__category-card {
  background-color: var(--card-bg, #11271B);
  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;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

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

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

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

.page-tintc__news-card-title {
  font-size: 1.4rem;
  color: var(--text-main, #F2FFF6);
  margin-bottom: 10px;
  font-weight: bold;
}

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

.page-tintc__news-card-title a:hover {
  color: var(--glow, #57E38D);
}

.page-tintc__news-card-meta {
  font-size: 0.9rem;
  color: var(--text-secondary, #A7D9B8);
  margin-bottom: 15px;
}

.page-tintc__news-card-excerpt {
  font-size: 1rem;
  color: var(--text-secondary, #A7D9B8);
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-tintc__news-card-link {
  display: inline-block;
  color: var(--glow, #57E38D);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  margin-top: auto; /* Push link to bottom */
}

.page-tintc__news-card-link:hover {
  color: var(--gold, #F2C14E);
}

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

.page-tintc__category-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.page-tintc__category-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-tintc__category-title {
  font-size: 1.3rem;
  color: var(--text-main, #F2FFF6);
  font-weight: bold;
}

.page-tintc__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-tintc__faq-item {
  background-color: var(--card-bg, #11271B);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  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: var(--text-main, #F2FFF6);
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
  -webkit-touch-callout: none; /* Disable text selection on iOS */
  -webkit-user-select: none; /* Disable text selection on Chrome/Safari */
  -moz-user-select: none; /* Disable text selection on Firefox */
  -ms-user-select: none; /* Disable text selection on IE/Edge */
  user-select: none; /* Disable text selection */
}

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

.page-tintc__faq-item[open] > .page-tintc__faq-question,
.page-tintc__faq-question:hover {
  background-color: var(--deep-green, #0A4B2C);
}

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

.page-tintc__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 20px;
  color: var(--glow, #57E38D);
}

.page-tintc__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1rem;
  color: var(--text-secondary, #A7D9B8);
}

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

.page-tintc__cta-section {
  background-color: var(--deep-green, #0A4B2C);
  text-align: center;
  padding: 80px 20px;
  border-radius: 12px;
  margin: 40px auto;
}

.page-tintc__cta-text {
  font-size: 1.2rem;
  color: var(--text-main, #F2FFF6);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-tintc__cta-button--large {
  padding: 16px 40px;
  font-size: 1.2rem;
}

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

@media (max-width: 768px) {
  .page-tintc__hero-section {
    padding: 40px 15px;
    padding-top: 10px;
  }

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

  .page-tintc__hero-content {
    margin-top: -40px;
    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 {
    padding: 12px 25px;
    font-size: 1rem;
  }

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

  .page-tintc__section-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
    margin-bottom: 30px;
  }

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

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

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

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

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

  .page-tintc__faq-answer {
    padding: 0 20px 15px 20px;
  }

  .page-tintc__cta-text {
    font-size: 1rem;
    margin-bottom: 30px;
  }

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

  /* Mobile specific overrides for images, videos, buttons, and containers */
  .page-tintc img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-tintc video,
  .page-tintc__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-tintc__hero-section,
  .page-tintc__latest-news-section,
  .page-tintc__categories-section,
  .page-tintc__faq-section,
  .page-tintc__cta-section,
  .page-tintc__news-card,
  .page-tintc__category-card,
  .page-tintc__faq-item,
  .page-tintc__container,
  .page-tintc__cta-button,
  .page-tintc__cta-button--large,
  .page-tintc a[class*="button"],
  .page-tintc a[class*="btn"] {
    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__cta-button,
  .page-tintc__cta-button--large,
  .page-tintc a[class*="button"],
  .page-tintc a[class*="btn"] {
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-tintc__view-all .page-tintc__cta-button {
    width: auto !important; /* Allow button to size to content if not full width */
    max-width: 90% !important; /* Keep some margin */
  }

  .page-tintc__hero-content {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}