.page-tintc {
  color: #ffffff; /* Body background is dark (#121212), so text should be light */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #121212; /* Fallback, though body handles it */
}

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

.page-tintc__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-tintc__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  position: relative;
}

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

.page-tintc__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
  max-width: 900px;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  color: #ffffff;
}

.page-tintc__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
  font-weight: bold;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-tintc__hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 30px;
  color: #f0f0f0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.page-tintc__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-tintc__cta-button--primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-tintc__cta-button--primary:hover {
  background-color: #1e87b7;
  border-color: #1e87b7;
  transform: translateY(-2px);
}

.page-tintc__cta-button--secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-tintc__cta-button--secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
  transform: translateY(-2px);
}

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

.page-tintc__section-title {
  font-size: 2.2rem;
  font-weight: bold;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 20px;
}

.page-tintc__section-description {
  font-size: 1.1rem;
  color: #f0f0f0;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-tintc__news-card {
  background-color: rgba(255, 255, 255, 0.08); /* Light transparent background for dark body */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

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

.page-tintc__card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-tintc__card-title {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.3;
}

.page-tintc__card-title a {
  color: #26A9E0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-tintc__card-title a:hover {
  color: #1e87b7;
}

.page-tintc__card-date {
  font-size: 0.9rem;
  color: #999999;
  margin-bottom: 15px;
  display: block;
}

.page-tintc__card-text {
  font-size: 1rem;
  color: #cccccc;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-tintc__read-more {
  color: #EA7C07; /* Login color for read more links */
  text-decoration: none;
  font-weight: bold;
  align-self: flex-start;
  transition: color 0.3s ease;
}

.page-tintc__read-more:hover {
  color: #cc6d06;
}

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

.page-tintc__insights-content {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.page-tintc__insights-image {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.page-tintc__insights-text {
  flex: 2;
  color: #f0f0f0;
  font-size: 1.1rem;
}

.page-tintc__insights-text p {
  margin-bottom: 20px;
}

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

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

.page-tintc__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-tintc__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15rem;
  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
}

.page-tintc__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.12);
}

.page-tintc__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #26A9E0;
}

.page-tintc__faq-item[open] .page-tintc__faq-question {
  border-bottom: none;
}

.page-tintc__faq-item[open] .page-tintc__faq-toggle {
  color: #EA7C07;
}

.page-tintc__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1rem;
  color: #cccccc;
}

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

.page-tintc__cta-bottom-section {
  background-color: #26A9E0;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.page-tintc__cta-bottom-section .page-tintc__section-title {
  color: #ffffff;
}

.page-tintc__cta-bottom-section .page-tintc__section-description {
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-tintc__cta-bottom-section .page-tintc__cta-button--primary {
  background-color: #EA7C07;
  border-color: #EA7C07;
}

.page-tintc__cta-bottom-section .page-tintc__cta-button--primary:hover {
  background-color: #cc6d06;
  border-color: #cc6d06;
}

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

  .page-tintc__insights-content {
    flex-direction: column;
  }

  .page-tintc__insights-image {
    order: -1; /* Image first on smaller screens */
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-tintc__main-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .page-tintc__hero-description {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
  }

  .page-tintc__section-title {
    font-size: 1.8rem;
  }

  .page-tintc__section-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }

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

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

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

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

  .page-tintc__card-text {
    font-size: 0.95rem;
  }

  /* Force responsive for all images */
  .page-tintc img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* All containers with images/buttons */
  .page-tintc__hero-section,
  .page-tintc__hero-content,
  .page-tintc__hero-image-wrapper,
  .page-tintc__latest-news-section,
  .page-tintc__insights-section,
  .page-tintc__promotions-section,
  .page-tintc__faq-section,
  .page-tintc__cta-bottom-section,
  .page-tintc__news-card,
  .page-tintc__insights-content,
  .page-tintc__button-group {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no horizontal scroll */
  }

  .page-tintc__cta-button,
  .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;
    margin-bottom: 10px; /* Add space between stacked buttons */
  }

  .page-tintc__button-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  /* Ensure content area images maintain minimum size if possible, but responsive */
  .page-tintc__insights-image {
    min-width: 200px;
    min-height: 200px;
  }
  .page-tintc__card-image {
    min-width: 200px;
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-tintc__hero-content {
    padding: 10px;
  }

  .page-tintc__main-title {
    font-size: 1.8rem;
  }

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

  .page-tintc__cta-button {
    padding: 12px 20px;
  }
}