.page-tintc {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for light body background #f8f8f8 */
  background-color: #f8f8f8;
}

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

.page-tintc__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 0;
  background-color: #0A4B2C; /* Deep Green background for hero */
  color: #F2FFF6; /* Light text for dark background */
}

.page-tintc__hero-image-wrapper {
  width: 100%;
  max-height: 500px; /* Limit height for hero image */
  overflow: hidden;
  position: relative;
}

.page-tintc__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly dim the image for text readability */
}

.page-tintc__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  max-width: 90%;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text */
  border-radius: 8px;
}

.page-tintc__main-title {
  font-size: clamp(2em, 5vw, 3.5em);
  font-weight: bold;
  margin-bottom: 15px;
  color: #F2C14E; /* Gold for main title */
  line-height: 1.2;
}

.page-tintc__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #F2FFF6; /* Text Main */
}

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

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

.page-tintc__cta-button--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-tintc__cta-button--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

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

.page-tintc__overview-section {
  background-color: #f8f8f8;
  color: #333333;
}

.page-tintc__section-title {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #11A84E; /* Main color */
}

.page-tintc__text-block {
  font-size: 1.05em;
  margin-bottom: 20px;
  line-height: 1.8;
}

.page-tintc__promo-types-section {
  background-color: #08160F; /* Dark background */
  color: #F2FFF6; /* Light text */
}

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

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

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

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

.page-tintc__card-title {
  font-size: 1.5em;
  font-weight: bold;
  margin: 20px 20px 10px;
  color: #F2C14E; /* Gold */
}

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

.page-tintc__card-link {
  display: inline-block;
  margin: 0 20px 20px;
  color: #2AD16F; /* Bright green link */
  text-decoration: none;
  font-weight: bold;
}

.page-tintc__card-link:hover {
  text-decoration: underline;
}

.page-tintc__sub-title {
  font-size: 1.8em;
  font-weight: bold;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
  color: #F2C14E; /* Gold */
}

.page-tintc__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-tintc__list-item {
  background-color: #11271B; /* Card BG */
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  border-left: 5px solid #2AD16F; /* Highlight with bright green */
  color: #F2FFF6; /* Text Main */
}

.page-tintc__list-item strong {
  color: #F2C14E; /* Gold for strong text */
}

.page-tintc__guide-section {
  background-color: #f8f8f8;
  color: #333333;
}

.page-tintc__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-tintc__guide-step {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border: 1px solid #e0e0e0;
}

.page-tintc__guide-step:hover {
  transform: translateY(-5px);
}

.page-tintc__step-icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background-color: #11A84E; /* Main color */
  color: #ffffff;
  font-size: 2em;
  font-weight: bold;
  margin: 0 auto 20px;
}

.page-tintc__step-title {
  font-size: 1.6em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #11A84E; /* Main color */
}

.page-tintc__step-text {
  font-size: 1em;
  margin-bottom: 25px;
}

.page-tintc__step-button {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 6px;
  background: #22C768; /* Auxiliary color */
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-tintc__step-button:hover {
  background-color: #11A84E;
}

.page-tintc__important-note {
  background-color: #fff3cd;
  border-left: 5px solid #ffc107;
  padding: 15px 20px;
  margin-top: 40px;
  border-radius: 8px;
  color: #856404;
}

.page-tintc__important-note strong {
  color: #856404;
}

.page-tintc__terms-section {
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Text Main */
}

.page-tintc__list--terms .page-tintc__list-item {
  background-color: #11271B; /* Card BG */
  border-left-color: #F2C14E; /* Gold highlight */
}

.page-tintc__tips-section {
  background-color: #f8f8f8;
  color: #333333;
}

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

.page-tintc__tip-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border: 1px solid #e0e0e0;
}

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

.page-tintc__faq-section {
  background-color: #08160F; /* Dark background */
  color: #F2FFF6; /* Light text */
}

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

.page-tintc__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #F2FFF6;
}

.page-tintc__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: bold;
  cursor: pointer;
  color: #F2C14E; /* Gold for question */
  background-color: #11271B;
  transition: background-color 0.3s ease;
}

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

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

.page-tintc__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #2AD16F; /* Bright green */
  transition: transform 0.3s ease;
}

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

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

.page-tintc__conclusion-section {
  background-color: #f8f8f8;
  color: #333333;
  text-align: center;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-tintc__main-title {
    font-size: clamp(1.8em, 4.5vw, 3em);
  }

  .page-tintc__section-title {
    font-size: 2em;
  }
}

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

  .page-tintc__hero-content {
    position: static;
    transform: none;
    max-width: 100%;
    padding: 20px;
    background-color: transparent;
    margin-top: 20px;
  }
  
  .page-tintc__hero-image-wrapper {
    max-height: 300px;
  }

  .page-tintc__main-title {
    font-size: clamp(1.5em, 6vw, 2.5em);
    margin-bottom: 10px;
  }

  .page-tintc__description {
    font-size: 0.95em;
    margin-bottom: 20px;
  }

  .page-tintc__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-tintc__section {
    padding: 40px 0;
  }

  .page-tintc__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-tintc__promo-grid,
  .page-tintc__guide-steps,
  .page-tintc__tips-grid {
    grid-template-columns: 1fr;
  }

  .page-tintc__promo-card,
  .page-tintc__guide-step,
  .page-tintc__tip-card {
    margin: 0 15px;
  }

  .page-tintc__container {
    padding: 0 15px;
  }

  .page-tintc__list-item {
    padding: 12px 15px;
    font-size: 0.95em;
  }

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

  .page-tintc__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.95em;
  }
  
  /* Mobile image, video, and button responsiveness */
  .page-tintc img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-tintc video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-tintc__section,
  .page-tintc__card,
  .page-tintc__container,
  .page-tintc__video-section,
  .page-tintc__video-container,
  .page-tintc__video-wrapper,
  .page-tintc__cta-button,
  .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;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-tintc__cta-button,
  .page-tintc__btn-primary,
  .page-tintc__btn-secondary,
  .page-tintc a[class*="button"],
  .page-tintc a[class*="btn"] {
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-tintc__cta-buttons,
  .page-tintc__button-group,
  .page-tintc__btn-container {
    flex-wrap: wrap !important;
    gap: 10px;
    flex-direction: column; /* Ensure buttons stack vertically if multiple */
  }
  
  .page-tintc__hero-section {
    padding-top: 10px !important;
  }
}

@media (max-width: 480px) {
  .page-tintc__main-title {
    font-size: clamp(1.2em, 8vw, 2em);
  }

  .page-tintc__section-title {
    font-size: 1.5em;
  }

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

  .page-tintc__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}

/* Body background is light #f8f8f8. Ensure text contrast. */
.page-tintc {
  color: #333333; 
}

.page-tintc__card {
  background: #ffffff; 
  color: #333333; 
  border: 1px solid #e0e0e0; 
}

.page-tintc__dark-section,
.page-tintc__promo-types-section,
.page-tintc__terms-section,
.page-tintc__faq-section {
  background: #08160F;
  color: #F2FFF6; 
}

.page-tintc__dark-section .page-tintc__section-title,
.page-tintc__promo-types-section .page-tintc__section-title,
.page-tintc__terms-section .page-tintc__section-title,
.page-tintc__faq-section .page-tintc__section-title {
  color: #F2C14E; /* Gold for titles on dark background */
}

.page-tintc__dark-section .page-tintc__text-block,
.page-tintc__promo-types-section .page-tintc__text-block,
.page-tintc__terms-section .page-tintc__text-block,
.page-tintc__faq-section .page-tintc__text-block {
  color: #A7D9B8; /* Text Secondary for general text on dark background */
}

.page-tintc__promo-card,
.page-tintc__list-item,
.page-tintc__faq-item {
  background-color: #11271B;
  color: #F2FFF6;
}

.page-tintc__promo-card .page-tintc__card-text,
.page-tintc__faq-item .page-tintc__faq-answer {
  color: #A7D9B8;
}

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

.page-tintc__btn-secondary {
  background: #ffffff;
  color: #11A84E;
  border: 2px solid #11A84E;
}