.page-tintc {
  font-family: 'Arial', sans-serif;
  color: var(--text-main);
  background-color: var(--bg-color);
}

.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-top: 10px; /* Small top padding, body handles --header-offset */
  overflow: hidden;
  color: var(--text-main);
}

.page-tintc__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-tintc__hero-content {
  position: relative;
  z-index: 10;
  padding: 40px 20px;
  margin-top: -80px; /* Pull content slightly over image, but not overlapping text directly */
  background-color: var(--card-bg);
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  max-width: 800px;
}

.page-tintc__main-title {
  font-size: clamp(2em, 4vw, 3.2em);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-main);
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.page-tintc__hero-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--text-secondary);
}

.page-tintc__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.8em);
  font-weight: 700;
  color: var(--text-main);
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
}

.page-tintc__sub-title {
  font-size: clamp(1.4em, 2.5vw, 2em);
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 15px;
  margin-top: 30px;
}

.page-tintc__text-block p, .page-tintc__text-content p {
  font-size: 1em;
  line-height: 1.7;
  margin-bottom: 15px;
  color: var(--text-secondary);
}

.page-tintc__image-and-text {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.page-tintc__image-and-text.page-tintc__reverse-layout {
  flex-direction: row-reverse;
}

.page-tintc__image-and-text .page-tintc__image-content {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-tintc__image-and-text .page-tintc__text-content {
  flex: 1;
}

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

.page-tintc__grid-3-columns {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-tintc__card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--text-secondary);
}

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

.page-tintc__card-title {
  font-size: 1.4em;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-tintc__card-date {
  font-size: 0.9em;
  color: var(--text-secondary);
  margin-bottom: 15px;
}

.page-tintc__card p {
  font-size: 0.95em;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--text-secondary);
  flex-grow: 1;
}

.page-tintc__btn-primary,
.page-tintc__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-tintc__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: var(--text-main);
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-tintc__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-tintc__btn-secondary {
  background-color: transparent;
  color: var(--text-main);
  border: 2px solid var(--border-color);
}

.page-tintc__btn-secondary:hover {
  background-color: var(--border-color);
  color: var(--text-main);
}

.page-tintc__cta-wrapper {
  text-align: center;
  margin-top: 40px;
}

.page-tintc__full-width-image {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

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

.page-tintc__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  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.1em;
  font-weight: 600;
  color: var(--text-main);
  background-color: var(--card-bg);
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

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

.page-tintc__faq-question:hover {
  background-color: var(--deep-green);
}

.page-tintc__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

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

.page-tintc__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  line-height: 1.7;
  color: var(--text-secondary);
}

.page-tintc__cta-bottom-section {
  text-align: center;
  padding-bottom: 80px;
}

.page-tintc__cta-description {
  font-size: 1.1em;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Color palette integration */
.page-tintc__dark-section {
  background-color: var(--bg-color);
  color: var(--text-main);
}

.page-tintc__light-bg {
  background-color: #f5f5f5; /* Using a very light gray for contrast, not white */
  color: #333333; /* Dark text for light background */
}

/* Ensure links in text are readable */
.page-tintc__text-content a,
.page-tintc__card a {
  color: var(--gold);
  text-decoration: underline;
}

.page-tintc__text-content a:hover,
.page-tintc__card a:hover {
  color: var(--glow);
}

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

  .page-tintc__image-and-text {
    flex-direction: column;
    gap: 30px;
  }

  .page-tintc__image-and-text.page-tintc__reverse-layout {
    flex-direction: column;
  }

  .page-tintc__image-and-text .page-tintc__image-content,
  .page-tintc__image-and-text .page-tintc__text-content {
    flex: none;
    width: 100%;
  }
}

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

  /* Images responsive */
  .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__image-and-text .page-tintc__image-content,
  .page-tintc__image-and-text .page-tintc__text-content {
    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;
  }

  .page-tintc__hero-content {
    margin-top: -40px;
    padding: 25px 15px;
  }

  .page-tintc__main-title {
    font-size: 2em; /* Ensure it's not too large on mobile */
  }

  .page-tintc__section-title {
    padding-top: 40px;
  }

  .page-tintc__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .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;
    padding-left: 15px;
    padding-right: 15px;
  }

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

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

@media (max-width: 480px) {
  .page-tintc__main-title {
    font-size: 1.8em;
  }

  .page-tintc__hero-description,
  .page-tintc__cta-description {
    font-size: 0.95em;
  }

  .page-tintc__card {
    padding: 20px;
  }
}

/* Custom Colors */
:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg: #11271B;
  --bg-color: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green: #0A4B2C;
}