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

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

.page-tintc__section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #FFD36B; /* Glow */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.page-tintc__text-main {
  color: #FFF6D6;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Hero Section */
.page-tintc__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px;
  background-color: #0A0A0A; /* Ensure dark background */
}

.page-tintc__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-tintc__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-tintc__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid #3A2A12; /* Border */
}

.page-tintc__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-tintc__hero-content h1 {
  color: #FFD36B; /* Glow */
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.1;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-tintc__hero-content p {
  color: #FFF6D6;
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-tintc__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #ffffff; /* White text for button */
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 211, 107, 0.4);
}

.page-tintc__cta-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 211, 107, 0.6);
}

/* Card Background Sections */
.page-tintc__card-bg {
  background-color: #111111; /* Card BG */
  padding: 60px 0;
  margin-bottom: 30px;
  border-radius: 10px;
  border: 1px solid #3A2A12; /* Border */
}

.page-tintc__card-bg:last-of-type {
  margin-bottom: 0;
}

/* Intro Section */
.page-tintc__intro-section p {
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Categories Section */
.page-tintc__category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-tintc__category-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-tintc__category-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 211, 107, 0.2);
}

.page-tintc__category-item img {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 5px;
  margin-bottom: 20px;
  object-fit: cover;
  border: 1px solid #3A2A12;
  min-height: 200px; /* Enforce min image size */
}

.page-tintc__category-title {
  font-size: 1.4rem;
  color: #FFD36B; /* Glow */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-tintc__category-title a {
  color: inherit;
  text-decoration: none;
}

.page-tintc__category-title a:hover {
  text-decoration: underline;
}

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

.page-tintc__news-card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 8px;
  overflow: hidden;
  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 10px 20px rgba(255, 211, 107, 0.2);
}

.page-tintc__news-card img {
  width: 100%;
  height: 220px; /* Fixed height for consistency */
  object-fit: cover;
  border-bottom: 1px solid #3A2A12;
}

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

.page-tintc__card-title {
  font-size: 1.3rem;
  color: #FFD36B; /* Glow */
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 1.4;
}

.page-tintc__card-title a {
  color: inherit;
  text-decoration: none;
}

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

.page-tintc__card-date {
  font-size: 0.9rem;
  color: #F2C14E; /* Primary */
  margin-bottom: 15px;
}

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

.page-tintc__read-more-button {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: bold;
  align-self: flex-start;
  transition: background-color 0.3s ease;
  border: none;
  box-shadow: 0 2px 8px rgba(255, 211, 107, 0.3);
}

.page-tintc__read-more-button:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 211, 107, 0.5);
}

/* Why Follow Section */
.page-tintc__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-tintc__list-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #FFF6D6;
}

.page-tintc__list-icon {
  color: #F2C14E; /* Primary */
  font-size: 1.5rem;
  margin-right: 15px;
  flex-shrink: 0;
  line-height: 1;
}

/* FAQ Section */
details.page-tintc__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #3A2A12; /* Border */
  overflow: hidden;
  background: #111111; /* Card BG */
}

details.page-tintc__faq-item summary.page-tintc__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #FFD36B; /* Glow */
  font-weight: 600;
}

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

details.page-tintc__faq-item summary.page-tintc__faq-question:hover {
  background: rgba(255, 211, 107, 0.05); /* Light hover effect */
}

.page-tintc__faq-qtext {
  flex: 1;
  font-size: 1.1rem;
  line-height: 1.5;
  text-align: left;
  color: #FFD36B;
}

.page-tintc__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #F2C14E; /* Primary */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-tintc__faq-item .page-tintc__faq-answer {
  padding: 0 20px 20px;
  background: rgba(255, 255, 255, 0.03); /* Slightly lighter than card bg */
  border-radius: 0 0 5px 5px;
}

.page-tintc__faq-answer p {
  color: #FFF6D6;
  font-size: 1rem;
}

/* Bottom CTA Section */
.page-tintc__cta-bottom-section {
  background-color: #0A0A0A; /* Background */
  padding: 80px 20px;
  text-align: center;
  border-radius: 10px;
  border: 1px solid #3A2A12; /* Border */
}

.page-tintc__cta-bottom-section .page-tintc__section-title {
  margin-bottom: 20px;
}

.page-tintc__cta-bottom-section p {
  max-width: 800px;
  margin: 0 auto 30px auto;
  font-size: 1.1rem;
  color: #FFF6D6;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-tintc__hero-content h1 {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-tintc__category-grid,
  .page-tintc__news-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .page-tintc__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-tintc__card-bg {
    padding: 40px 0;
    margin-left: 15px;
    margin-right: 15px;
  }
  .page-tintc__section-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
    margin-bottom: 30px;
  }
  .page-tintc__hero-image img,
  .page-tintc__news-card img,
  .page-tintc__category-item img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-tintc__container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-tintc__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-tintc__read-more-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-tintc__category-item,
  .page-tintc__news-card {
    padding: 15px;
  }
  .page-tintc__news-card img {
     /* Adjust height for mobile */
  }
  details.page-tintc__faq-item summary.page-tintc__faq-question {
    padding: 15px;
  }
  .page-tintc__faq-qtext {
    font-size: 1rem;
  }
  .page-tintc__faq-toggle {
    font-size: 20px;
  }
  .page-tintc__faq-answer {
    padding: 0 15px 15px;
  }
  .page-tintc__cta-bottom-section {
    padding: 60px 15px;
  }
}

@media (max-width: 480px) {
  .page-tintc__hero-content h1 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }
  .page-tintc__category-grid,
  .page-tintc__news-grid {
    grid-template-columns: 1fr;
  }
}