.page-tin-tc {
  --primary-color: #0A2342;
  --secondary-color: #FFD700;
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-light: #f4f7f6;
  --bg-dark: #071a33;
  --border-color: #e0e0e0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

.page-tin-tc .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Banner */
.page-tin-tc .hero-banner {
  position: relative;
  background: var(--primary-color);
  padding: 80px 0;
  color: var(--text-light);
  text-align: center;
  overflow: hidden;
}

.page-tin-tc .hero-overlay {
  position: relative;
  z-index: 1;
  padding: 20px 0;
  background: rgba(0, 0, 0, 0.4);
}

.page-tin-tc .hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--secondary-color);
  font-weight: bold;
  line-height: 1.2;
}

.page-tin-tc .hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-tin-tc .cta-button {
  display: inline-block;
  background: var(--secondary-color);
  color: var(--primary-color);
  padding: 15px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-tin-tc .cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

/* Section Title */
.page-tin-tc .section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-top: 60px;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-tin-tc .section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}

/* News Article (main promo) */
.page-tin-tc .news-section {
  padding: 60px 0;
  background-color: var(--bg-light);
}

.page-tin-tc .news-article {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-tin-tc .article-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  object-fit: cover;
}

.page-tin-tc .article-title {
  font-size: 2em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-tin-tc .article-link {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-tin-tc .article-link:hover {
  color: var(--secondary-color);
}

.page-tin-tc .article-meta {
  color: #777;
  font-size: 0.95em;
  margin-bottom: 15px;
}

.page-tin-tc .article-excerpt {
  font-size: 1.1em;
  color: var(--text-dark);
  margin-bottom: 25px;
  max-width: 900px;
}

.page-tin-tc .read-more-button {
  display: inline-block;
  background: var(--primary-color);
  color: var(--text-light);
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-tin-tc .read-more-button:hover {
  background-color: #06152a;
}

/* News Grid */
.page-tin-tc .news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.page-tin-tc .news-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.page-tin-tc .news-card:hover {
  transform: translateY(-5px);
}

.page-tin-tc .card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid var(--border-color);
}

.page-tin-tc .card-title {
  font-size: 1.35em;
  color: var(--primary-color);
  padding: 20px 20px 10px;
  margin: 0;
  flex-grow: 1;
}

.page-tin-tc .card-link {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-tin-tc .card-link:hover {
  color: var(--secondary-color);
}

.page-tin-tc .card-meta {
  color: #888;
  font-size: 0.85em;
  padding: 0 20px;
  margin-bottom: 10px;
}

.page-tin-tc .card-excerpt {
  font-size: 0.95em;
  color: #555;
  padding: 0 20px 20px;
}

/* Guide Section */
.page-tin-tc .guide-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.page-tin-tc .guide-item {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding-bottom: 20px;
}

.page-tin-tc .guide-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 20px;
}

.page-tin-tc .guide-title {
  font-size: 1.4em;
  color: var(--primary-color);
  margin: 0 20px 15px;
}

.page-tin-tc .guide-link {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-tin-tc .guide-link:hover {
  color: var(--secondary-color);
}

.page-tin-tc .guide-description {
  font-size: 0.95em;
  color: #555;
  padding: 0 20px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-tin-tc .guide-button {
  display: inline-block;
  background: var(--secondary-color);
  color: var(--primary-color);
  padding: 10px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.95em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-tin-tc .guide-button:hover {
  background-color: #e6c200;
}

/* Promotions Section */
.page-tin-tc .promotions-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.page-tin-tc .promotion-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.page-tin-tc .promotion-card:hover {
  transform: translateY(-5px);
}

.page-tin-tc .promotion-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid var(--border-color);
}

.page-tin-tc .promotion-title {
  font-size: 1.35em;
  color: var(--primary-color);
  padding: 20px 20px 10px;
  margin: 0;
  flex-grow: 1;
}

.page-tin-tc .promotion-link {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-tin-tc .promotion-link:hover {
  color: var(--secondary-color);
}

.page-tin-tc .promotion-excerpt {
  font-size: 0.95em;
  color: #555;
  padding: 0 20px 20px;
}

.page-tin-tc .promotion-button {
  display: inline-block;
  background: var(--primary-color);
  color: var(--text-light);
  padding: 10px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.95em;
  font-weight: bold;
  margin: 0 20px 20px;
  align-self: flex-start;
  transition: background-color 0.3s ease;
}

.page-tin-tc .promotion-button:hover {
  background-color: #06152a;
}

/* FAQ Section */
.page-tin-tc .faq-container {
  max-width: 900px;
  margin: 0 auto 60px;
}

.page-tin-tc .faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

.page-tin-tc .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-tin-tc .faq-question:hover {
  background: var(--bg-light);
}

.page-tin-tc .faq-question h3 {
  margin: 0;
  font-size: 1.15em;
  color: var(--primary-color);
}

.page-tin-tc .faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
  line-height: 1;
}

.page-tin-tc .faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.page-tin-tc .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #f9f9f9;
  color: #555;
}

.page-tin-tc .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 20px 25px;
}

.page-tin-tc .faq-answer p {
  margin: 0;
  font-size: 1em;
}

/* Contact CTA */
.page-tin-tc .contact-cta {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 80px 0;
  text-align: center;
}

.page-tin-tc .cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.page-tin-tc .cta-description {
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-tin-tc .hero-title {
    font-size: 2.5em;
  }
  .page-tin-tc .hero-description {
    font-size: 1.1em;
  }
  .page-tin-tc .section-title {
    font-size: 2em;
  }
  .page-tin-tc .news-article {
    padding: 25px;
  }
  .page-tin-tc .article-title {
    font-size: 1.7em;
  }
  .page-tin-tc .card-title, .page-tin-tc .guide-title, .page-tin-tc .promotion-title {
    font-size: 1.2em;
  }
  .page-tin-tc .card-image, .page-tin-tc .promotion-image {
    height: 180px;
  }
  .page-tin-tc .guide-image {
    height: 160px;
  }
  .page-tin-tc .cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-tin-tc .hero-banner {
    padding: 60px 0;
  }
  .page-tin-tc .hero-title {
    font-size: 2em;
  }
  .page-tin-tc .hero-description {
    font-size: 1em;
  }
  .page-tin-tc .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-tin-tc .section-title {
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 30px;
  }
  .page-tin-tc .news-article {
    padding: 20px;
    margin-bottom: 40px;
  }
  .page-tin-tc .article-image {
    margin-bottom: 20px;
  }
  .page-tin-tc .article-title {
    font-size: 1.5em;
  }
  .page-tin-tc .article-excerpt {
    font-size: 0.9em;
  }
  .page-tin-tc .news-grid, .page-tin-tc .guide-section, .page-tin-tc .promotions-section {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-tin-tc .card-image, .page-tin-tc .promotion-image {
    height: 200px;
  }
  .page-tin-tc .guide-image {
    height: 180px;
  }
  .page-tin-tc .faq-question {
    padding: 15px 20px;
  }
  .page-tin-tc .faq-question h3 {
    font-size: 1em;
  }
  .page-tin-tc .faq-toggle {
    font-size: 1.5em;
  }
  .page-tin-tc .faq-answer {
    padding: 0 20px;
  }
  .page-tin-tc .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
  .page-tin-tc .contact-cta {
    padding: 60px 0;
  }
  .page-tin-tc .cta-title {
    font-size: 1.8em;
  }
  .page-tin-tc .cta-description {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-tin-tc .hero-title {
    font-size: 1.8em;
  }
  .page-tin-tc .section-title {
    font-size: 1.5em;
  }
  .page-tin-tc .article-title {
    font-size: 1.3em;
  }
  .page-tin-tc .card-title, .page-tin-tc .guide-title, .page-tin-tc .promotion-title {
    font-size: 1.1em;
  }
  .page-tin-tc .card-image, .page-tin-tc .promotion-image {
    height: 160px;
  }
  .page-tin-tc .guide-image {
    height: 140px;
  }
  .page-tin-tc .cta-title {
    font-size: 1.5em;
  }
  .page-tin-tc .cta-button {
    padding: 10px 25px;
  }
}