.page-tintc {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF1E8; /* Text Main */
  background-color: #140C0C; /* Background */
}

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

.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; /* Small top padding, main offset from body */
  background-color: #140C0C;
}

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

.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;
}

.page-tintc__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 30px;
  border-radius: 8px;
  box-sizing: border-box;
}

.page-tintc__dark-bg {
  background: #2A1212; /* Card BG */
  color: #FFF1E8;
}

.page-tintc__light-bg {
  background: #140C0C; /* Background */
  color: #FFF1E8;
}

.page-tintc__main-title {
  font-size: 48px;
  font-weight: bold;
  color: #F3C54D; /* Gold */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-tintc__hero-description {
  font-size: 18px;
  color: #FFF1E8;
  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, #FFB04A 0%, #D86A14 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.page-tintc__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #F3C54D; /* Gold */
}

.page-tintc__section-title--light {
  color: #F3C54D; /* Gold */
}

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

.page-tintc__news-card {
  background: #2A1212; /* Card BG */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  border: 1px solid #6A1E1E; /* Border */
}

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

.page-tintc__news-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-tintc__card-content {
  padding: 25px;
}

.page-tintc__card-title {
  font-size: 22px;
  font-weight: bold;
  color: #F3C54D; /* Gold */
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.page-tintc__card-title:hover {
  color: #FFB04A;
}

.page-tintc__card-date {
  font-size: 14px;
  color: #7E0D0D; /* Deep Red */
  margin-bottom: 15px;
}

.page-tintc__card-excerpt {
  font-size: 16px;
  color: #FFF1E8;
  margin-bottom: 20px;
}

.page-tintc__read-more {
  display: inline-block;
  color: #FFB04A;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-tintc__read-more:hover {
  color: #F3C54D;
  text-decoration: underline;
}

.page-tintc__view-all-button {
  text-align: center;
  margin-top: 40px;
}

.page-tintc__promotional-news {
  background-color: #140C0C;
  padding-bottom: 60px;
}

.page-tintc__promo-card {
  display: flex;
  background: #2A1212; /* Card BG */
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #6A1E1E; /* Border */
}

.page-tintc__promo-card img {
  width: 40%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-tintc__promo-content {
  padding: 30px;
  width: 60%;
  box-sizing: border-box;
}

.page-tintc__promo-title {
  font-size: 28px;
  font-weight: bold;
  color: #F3C54D; /* Gold */
  margin-bottom: 15px;
}

.page-tintc__promo-date {
  font-size: 15px;
  color: #7E0D0D; /* Deep Red */
  margin-bottom: 15px;
}

.page-tintc__promo-description {
  font-size: 17px;
  color: #FFF1E8;
  margin-bottom: 25px;
}

.page-tintc__cta-banner {
  text-align: center;
  padding: 60px 20px;
  background-color: #2A1212; /* Card BG */
  border-top: 1px solid #6A1E1E;
  border-bottom: 1px solid #6A1E1E;
}

.page-tintc__cta-container {
  max-width: 900px;
}

.page-tintc__cta-heading {
  font-size: 38px;
  font-weight: bold;
  color: #F3C54D; /* Gold */
  margin-bottom: 20px;
}

.page-tintc__cta-text {
  font-size: 19px;
  color: #FFF1E8;
  margin-bottom: 30px;
}

.page-tintc__faq-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #140C0C;
}

details.page-tintc__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #6A1E1E; /* Border */
  overflow: hidden;
  background: #2A1212; /* 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;
}

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(106, 30, 30, 0.5); /* Darker red hover */
}

.page-tintc__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #F3C54D; /* Gold */
}

.page-tintc__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFB04A; /* Gold gradient start */
  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: #140C0C; /* Background */
  border-radius: 0 0 5px 5px;
  color: #FFF1E8; /* Text Main */
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-tintc__main-title {
    font-size: 40px;
  }
  .page-tintc__hero-description {
    font-size: 17px;
  }
  .page-tintc__section-title {
    font-size: 32px;
  }
  .page-tintc__promo-card img {
    width: 35%;
  }
  .page-tintc__promo-content {
    width: 65%;
    padding: 20px;
  }
  .page-tintc__promo-title {
    font-size: 24px;
  }
  .page-tintc__cta-heading {
    font-size: 32px;
  }
  .page-tintc__cta-text {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .page-tintc__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-tintc__hero-image img {
    border-radius: 4px;
  }
  .page-tintc__main-title {
    font-size: 32px;
    margin-bottom: 15px;
  }
  .page-tintc__hero-description {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .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__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-tintc__news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-tintc__news-card img {
    height: 200px;
  }
  .page-tintc__card-content {
    padding: 20px;
  }
  .page-tintc__card-title {
    font-size: 20px;
  }
  .page-tintc__promo-card {
    flex-direction: column;
  }
  .page-tintc__promo-card img {
    width: 100%;
    height: 250px;
  }
  .page-tintc__promo-content {
    width: 100%;
    padding: 20px;
  }
  .page-tintc__promo-title {
    font-size: 22px;
  }
  .page-tintc__cta-banner {
    padding: 40px 15px;
  }
  .page-tintc__cta-heading {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .page-tintc__cta-text {
    font-size: 17px;
  }
  details.page-tintc__faq-item summary.page-tintc__faq-question {
    padding: 15px;
  }
  .page-tintc__faq-qtext {
    font-size: 16px;
  }
  .page-tintc__faq-toggle {
    font-size: 20px;
  }
  details.page-tintc__faq-item .page-tintc__faq-answer {
    padding: 0 15px 15px;
  }

  /* Mobile image and button overflow prevention */
  .page-tintc img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-tintc__section, .page-tintc__card, .page-tintc__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !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;
  }
  .page-tintc__cta-buttons {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .page-tintc__main-title {
    font-size: 28px;
  }
  .page-tintc__section-title {
    font-size: 24px;
  }
  .page-tintc__cta-heading {
    font-size: 24px;
  }
  .page-tintc__hero-content {
    padding: 20px;
  }
  .page-tintc__card-title {
    font-size: 18px;
  }
  .page-tintc__promo-title {
    font-size: 20px;
  }
}