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

.page-tintc__hero-section {
  position: relative;
  width: 100%;
  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 */
  box-sizing: border-box;
  overflow: hidden;
}

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

.page-tintc__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.3; /* Slightly dim the background image */
}

.page-tintc__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  background-color: rgba(17, 39, 27, 0.7); /* Card BG with transparency */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-tintc__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

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

.page-tintc__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  border-radius: 8px;
  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 {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-tintc__cta-button--secondary {
  background: none;
  border: 2px solid #2AD16F;
  color: #2AD16F;
}

.page-tintc__cta-button--secondary:hover {
  background: rgba(42, 209, 111, 0.1);
  color: #F2FFF6;
}

.page-tintc__section {
  padding: 50px 20px;
  box-sizing: border-box;
  background-color: #08160F; /* Background */
}

.page-tintc__section:nth-of-type(even) {
  background-color: #11271B; /* Card BG */
}

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

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

.page-tintc__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #2AD16F 0%, #13994A 100%);
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-tintc__text-block {
  font-size: 1.05rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  line-height: 1.8;
}

.page-tintc__text-block strong {
  color: #F2FFF6;
}

.page-tintc__category-item {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #2E7A4E; /* Border */
}

.page-tintc__category-title {
  font-size: 1.8rem;
  color: #2AD16F;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-tintc__image {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-tintc__image--center {
  margin-left: auto;
  margin-right: auto;
}

.page-tintc__image--left {
  float: left;
  margin-right: 30px;
  margin-bottom: 15px;
  max-width: 50%;
}

.page-tintc__image--right {
  float: right;
  margin-left: 30px;
  margin-bottom: 15px;
  max-width: 50%;
}

.page-tintc__benefit-list, .page-tintc__promotion-list, .page-tintc__registration-steps {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-tintc__benefit-item, .page-tintc__promotion-item, .page-tintc__step-item {
  background-color: #0A4B2C; /* Deep Green */
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  color: #F2FFF6; /* Text Main */
  border-left: 5px solid #2AD16F;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-tintc__benefit-item::before, .page-tintc__promotion-item::before {
  content: '✓';
  color: #57E38D; /* Glow */
  font-weight: bold;
  margin-right: 15px;
  font-size: 1.2rem;
}

.page-tintc__step-item {
  counter-increment: step-counter;
  border-left: none;
}

.page-tintc__step-item::before {
  content: counter(step-counter);
  background-color: #2AD16F;
  color: #F2FFF6;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  margin-right: 15px;
  flex-shrink: 0;
}

.page-tintc__step-item strong {
  color: #F2FFF6;
}

.page-tintc__faq-list {
  margin-top: 30px;
}

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

.page-tintc__faq-item details > summary {
  list-style: none;
}

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

.page-tintc__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  background-color: #0A4B2C; /* Deep Green */
  transition: background-color 0.3s ease;
}

.page-tintc__faq-question:hover {
  background-color: #13994A;
}

.page-tintc__faq-qtext {
  flex-grow: 1;
  font-size: 1.1rem;
}

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

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

.page-tintc__faq-item[open] .page-tintc__faq-question {
  background-color: #13994A;
}

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

/* Clearfix for floating images */
.page-tintc__container::after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .page-tintc__image--left, .page-tintc__image--right {
    float: none;
    margin: 0 auto 30px auto;
    max-width: 100%;
  }
}

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

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

  .page-tintc__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

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

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

  .page-tintc__section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .page-tintc__text-block {
    font-size: 0.95rem;
  }

  .page-tintc__category-title {
    font-size: 1.5rem;
  }

  .page-tintc__cta-button {
    padding: 12px 25px;
    font-size: 0.95rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-tintc__cta-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .page-tintc__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-tintc__section,
  .page-tintc__container,
  .page-tintc__category-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;
  }

  .page-tintc__video-section {
    padding-top: 10px !important;
  }

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

  .page-tintc__video-section,
  .page-tintc__video-container,
  .page-tintc__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  
  .page-tintc__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}