.page-tintc {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  background-color: var(--color-background); /* Body background from shared.css */
}

.page-tintc__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 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, body handles header offset */
  margin-bottom: 40px;
  overflow: hidden;
}

.page-tintc__hero-image-main {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.page-tintc__main-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: #FFD36B; /* Auxiliary color for highlight */
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-tintc__intro-text {
  font-size: 18px;
  color: #FFF6D6;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-tintc__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-tintc__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  opacity: 0.9;
}

.page-tintc__section-title {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  color: #F2C14E; /* Primary color */
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.page-tintc__section-title--light {
  color: #FFF6D6;
}

.page-tintc__news-list-section {
  padding: 40px 0;
}

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

.page-tintc__news-card {
  background: #111111; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #3A2A12; /* Border */
}

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

.page-tintc__news-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

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

.page-tintc__news-card-content {
  padding: 20px;
}

.page-tintc__news-card-title {
  font-size: 20px;
  font-weight: 600;
  color: #FFD36B;
  margin-bottom: 10px;
  line-height: 1.3;
}

.page-tintc__news-card-excerpt {
  font-size: 15px;
  color: #FFF6D6;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-tintc__news-card-date {
  font-size: 13px;
  color: rgba(255, 246, 214, 0.7);
  display: block;
  margin-bottom: 10px;
}

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

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

.page-tintc__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  gap: 10px;
}

.page-tintc__pagination-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  background: #111111;
  color: #FFF6D6;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 1px solid #3A2A12;
}

.page-tintc__pagination-link:hover {
  background: #F2C14E;
  color: #111111;
}

.page-tintc__pagination-link--active {
  background: #F2C14E;
  color: #111111;
  border-color: #F2C14E;
}

.page-tintc__faq-section {
  padding: 60px 0;
  background-color: #0A0A0A; /* Background */
}

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

details.page-tintc__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #3A2A12; /* Border */
  overflow: hidden;
  background: #111111; /* Card BG */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

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-color: rgba(242, 193, 78, 0.1);
}

.page-tintc__faq-qtext {
  flex: 1;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #FFF6D6;
}

.page-tintc__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #F2C14E;
  flex-shrink: 0;
  margin-left: 20px;
  width: 30px;
  text-align: center;
  line-height: 1;
}

details.page-tintc__faq-item .page-tintc__faq-answer {
  padding: 0 25px 20px;
  background: rgba(17, 17, 17, 0.8);
  border-radius: 0 0 8px 8px;
  color: #FFF6D6;
}

.page-tintc__faq-answer p {
  margin: 0;
  font-size: 15px;
}

.page-tintc__cta-bottom-section {
  padding: 60px 0;
  text-align: center;
}

.page-tintc__cta-bottom-content {
  background: #0A0A0A; /* Background */
  padding: 50px 30px;
  border-radius: 10px;
  border: 1px solid #3A2A12;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.page-tintc__cta-description {
  font-size: 18px;
  color: #FFF6D6;
  max-width: 800px;
  margin: 20px auto 30px auto;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-tintc__hero-content {
    margin-top: 20px;
  }
  .page-tintc__main-title {
    font-size: clamp(26px, 3.8vw, 42px);
  }
  .page-tintc__intro-text {
    font-size: 17px;
  }
  .page-tintc__news-grid {
    gap: 25px;
  }
  .page-tintc__news-card-title {
    font-size: 19px;
  }
}

@media (max-width: 768px) {
  .page-tintc__hero-section {
    padding-top: 10px !important;
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
  }
  .page-tintc__hero-image-main {
    border-radius: 8px;
  }
  .page-tintc__hero-content {
    margin-top: 20px;
  }
  .page-tintc__main-title {
    font-size: clamp(24px, 6vw, 36px);
    margin-bottom: 10px;
  }
  .page-tintc__intro-text {
    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__news-list-section {
    padding: 30px 0;
  }
  .page-tintc__section-title {
    font-size: clamp(22px, 5vw, 32px);
    margin-bottom: 30px;
  }
  .page-tintc__news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-tintc__news-card-image {
    height: 180px;
  }
  .page-tintc__news-card-title {
    font-size: 18px;
  }
  .page-tintc__news-card-excerpt {
    font-size: 14px;
  }
  .page-tintc__pagination {
    margin-top: 40px;
    gap: 8px;
  }
  .page-tintc__pagination-link {
    min-width: 36px;
    height: 36px;
    font-size: 14px;
  }
  .page-tintc__faq-section {
    padding: 40px 0;
  }
  details.page-tintc__faq-item summary.page-tintc__faq-question {
    padding: 15px 20px;
  }
  .page-tintc__faq-qtext {
    font-size: 16px;
  }
  .page-tintc__faq-toggle {
    font-size: 24px;
    margin-left: 15px;
    width: 25px;
  }
  .page-tintc__faq-answer {
    padding: 0 20px 15px;
  }
  .page-tintc__faq-answer p {
    font-size: 14px;
  }
  .page-tintc__cta-bottom-section {
    padding: 40px 0;
  }
  .page-tintc__cta-bottom-content {
    padding: 40px 20px;
  }
  .page-tintc__cta-description {
    font-size: 16px;
    margin: 15px auto 25px auto;
  }
  /* Ensure all images are responsive */
  .page-tintc img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-tintc__container,
  .page-tintc__news-list-section,
  .page-tintc__faq-section,
  .page-tintc__cta-bottom-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-tintc__hero-section {
    padding-left: 10px;
    padding-right: 10px;
  }
  .page-tintc__news-card-content {
    padding: 15px;
  }
  .page-tintc__news-card-title {
    font-size: 17px;
  }
  .page-tintc__cta-button {
    font-size: 15px;
    padding: 10px 25px;
  }
  .page-tintc__pagination-link {
    min-width: 32px;
    height: 32px;
  }
  .page-tintc__cta-bottom-content {
    padding: 30px 15px;
  }
  .page-tintc__container,
  .page-tintc__news-list-section,
  .page-tintc__faq-section,
  .page-tintc__cta-bottom-section {
    padding-left: 10px;
    padding-right: 10px;
  }
}