.page-tintc {
  color: var(--text-main, #FFF5E1); /* Default text color for the page */
  background-color: var(--bg-color, #B71C1C); /* Assuming --bg-color is dark based on theme */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

/* --- Hero Section --- */
.page-tintc__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
  background-color: var(--deep-red, #7A0E0E); /* Darker background for hero */
}

.page-tintc__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-tintc__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 200px; /* Minimum size requirement */
}

.page-tintc__hero-content {
  width: 100%;
  max-width: 960px; /* Constrain content width */
  text-align: center;
  padding: 40px 20px;
  box-sizing: border-box;
  color: var(--text-main, #FFF5E1); /* Light text on dark background */
}

.page-tintc__main-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem); /* Responsive font size for H1 */
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--gold, #F4D34D); /* Gold color for main title */
  letter-spacing: 1px;
  line-height: 1.2;
}

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

.page-tintc__hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

/* --- General Section Styles --- */
.page-tintc__latest-news-section,
.page-tintc__promotions-section,
.page-tintc__in-depth-analysis-section,
.page-tintc__faq-section,
.page-tintc__cta-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  color: var(--text-main, #FFF5E1); /* Light text on dark background */
}

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

.page-tintc__section-title--large {
  font-size: clamp(2.0rem, 4.5vw, 3.2rem);
}

.page-tintc__section-description {
  font-size: 1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: var(--text-main, #FFF5E1);
}

/* --- Buttons --- */
.page-tintc__btn-primary,
.page-tintc__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%; /* For mobile responsiveness */
  text-align: center;
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word;
}

.page-tintc__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Gold gradient */
  color: var(--deep-red, #7A0E0E); /* Dark text on gold */
  border: none;
}

.page-tintc__btn-primary:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 15px var(--glow, #FFCC66);
}

.page-tintc__btn-secondary {
  background-color: transparent;
  color: var(--gold, #F4D34D); /* Gold text */
  border: 2px solid var(--border, #F2B544); /* Gold border */
}

.page-tintc__btn-secondary:hover {
  background-color: var(--gold, #F4D34D);
  color: var(--deep-red, #7A0E0E);
  box-shadow: 0 0 15px var(--glow, #FFCC66);
}

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

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

.page-tintc__btn-cta {
  min-width: 180px;
}

/* --- News Grid --- */
.page-tintc__news-grid,
.page-tintc__promo-cards,
.page-tintc__guide-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-tintc__news-card,
.page-tintc__promo-card,
.page-tintc__guide-card {
  background-color: var(--card-bg, #D32F2F); /* Card background */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-tintc__news-card:hover,
.page-tintc__promo-card:hover,
.page-tintc__guide-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-tintc__news-card-image,
.page-tintc__promo-card-image,
.page-tintc__guide-card-image {
  width: 100%;
  height: 225px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  min-height: 200px; /* Minimum size requirement */
}

.page-tintc__news-card-content,
.page-tintc__promo-card-content,
.page-tintc__guide-card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-tintc__news-card-title,
.page-tintc__promo-card-title,
.page-tintc__guide-card-title {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.4;
  color: var(--gold, #F4D34D); /* Gold title */
}

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

.page-tintc__news-card-title a:hover,
.page-tintc__guide-card-title a:hover {
  text-decoration: underline;
}

.page-tintc__news-card-meta,
.page-tintc__guide-card-meta {
  font-size: 0.9rem;
  color: rgba(255, 245, 225, 0.7); /* Lighter text for meta */
  margin-bottom: 15px;
}

.page-tintc__news-card-summary,
.page-tintc__promo-card-text,
.page-tintc__guide-card-summary {
  font-size: 1rem;
  color: var(--text-main, #FFF5E1);
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-tintc__news-card-link,
.page-tintc__guide-card-link {
  display: inline-block;
  color: var(--gold, #F4D34D);
  text-decoration: none;
  font-weight: bold;
  margin-top: auto; /* Push link to bottom */
}

.page-tintc__news-card-link:hover,
.page-tintc__guide-card-link:hover {
  text-decoration: underline;
}

/* --- FAQ Section --- */
.page-tintc__faq-list {
  max-width: 800px;
  margin: 40px auto 0 auto;
}

.page-tintc__faq-item {
  background-color: var(--card-bg, #D32F2F);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  color: var(--text-main, #FFF5E1);
}

.page-tintc__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--gold, #F4D34D);
  list-style: none; /* Remove default marker */
}

.page-tintc__faq-item summary::-webkit-details-marker {
  display: none; /* Remove default marker for webkit browsers */
}

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

.page-tintc__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
  color: var(--gold, #F4D34D);
}

.page-tintc__faq-item[open] .page-tintc__faq-toggle {
  transform: rotate(45deg); /* Rotate '+' to 'x' or similar for open state */
}

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

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

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

  .page-tintc__hero-section {
    padding: 10px 0 40px 0;
  }

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

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

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

  .page-tintc__hero-cta {
    flex-direction: column;
    gap: 15px;
    padding: 0 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__cta-buttons,
  .page-tintc__button-group,
  .page-tintc__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
    flex-direction: column; /* Ensure vertical stacking for CTAs */
  }

  .page-tintc__latest-news-section,
  .page-tintc__promotions-section,
  .page-tintc__in-depth-analysis-section,
  .page-tintc__faq-section,
  .page-tintc__cta-section {
    padding: 40px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

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

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

  .page-tintc__news-card-image,
  .page-tintc__promo-card-image,
  .page-tintc__guide-card-image {
    height: 180px; /* Adjust height for smaller screens */
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

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

  .page-tintc__news-card-title,
  .page-tintc__promo-card-title,
  .page-tintc__guide-card-title {
    font-size: 1.15rem;
  }

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

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