.page-tin-tc {
  --primary-color: #FFD700;
  --secondary-color: #B22222;
  --dark-bg: #1A1A1A;
  --text-light: #F0F0F0;
  --text-dark: #333333;
  --card-bg: #282828;
  --border-color: #444444;
  font-family: 'Arial', sans-serif;
  color: var(--text-light);
  background-color: var(--dark-bg);
  line-height: 1.6;
}

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

.page-tin-tc-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--border-color);
}

.page-tin-tc-section:last-of-type {
  border-bottom: none;
}

.page-tin-tc h1,
.page-tin-tc h2 {
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-tin-tc h3 {
  color: var(--primary-color);
  margin-top: 20px;
  margin-bottom: 10px;
}

.page-tin-tc p {
  margin-bottom: 15px;
  color: var(--text-light);
}

.page-tin-tc-hero {
  background: linear-gradient(135deg, var(--dark-bg) 0%, #330000 50%, var(--dark-bg) 100%);
  padding: 80px 0;
  text-align: center;
}

.page-tin-tc-hero h1 {
  font-size: 3.2em;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-tin-tc-hero p {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-tin-tc-cta-button {
  display: inline-block;
  background: var(--secondary-color);
  color: #ffffff;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid var(--secondary-color);
}

.page-tin-tc-cta-button:hover {
  background-color: #CC3333;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-tin-tc-news-grid,
.page-tin-tc-promo-grid,
.page-tin-tc-guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-tin-tc-news-card,
.page-tin-tc-promo-card,
.page-tin-tc-guide-card {
  background-color: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-tin-tc-news-card:hover,
.page-tin-tc-promo-card:hover,
.page-tin-tc-guide-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-tin-tc-news-image,
.page-tin-tc-promo-image,
.page-tin-tc-guide-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-tin-tc-news-card h3,
.page-tin-tc-promo-card h3,
.page-tin-tc-guide-card h3 {
  font-size: 1.4em;
  padding: 15px 20px 0;
  line-height: 1.4;
  flex-grow: 1;
}

.page-tin-tc-news-card h3 a,
.page-tin-tc-promo-card h3 a,
.page-tin-tc-guide-card h3 a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-tin-tc-news-card h3 a:hover,
.page-tin-tc-promo-card h3 a:hover,
.page-tin-tc-guide-card h3 a:hover {
  color: #FFEA00;
}

.page-tin-tc-news-card p,
.page-tin-tc-promo-card p,
.page-tin-tc-guide-card p {
  font-size: 0.95em;
  color: #CCCCCC;
  padding: 0 20px 15px;
}

.page-tin-tc-news-date {
  display: block;
  font-size: 0.85em;
  color: #AAAAAA;
  padding: 0 20px 15px;
  margin-top: auto;
}

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

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

.page-tin-tc-button-small {
  display: inline-block;
  background: var(--primary-color);
  color: var(--text-dark);
  padding: 8px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.85em;
  margin: 0 20px 20px;
  transition: background-color 0.3s ease;
}

.page-tin-tc-button-small:hover {
  background-color: #FFEA00;
}

.page-tin-tc-read-more-text {
  text-align: center;
  margin-top: 40px;
  font-style: italic;
  color: #AAAAAA;
}

/* FAQ Section Specific Styles */
.page-tin-tc-faq-list {
  margin-top: 30px;
}

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

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

.page-tin-tc .faq-question:hover {
  background: #444444;
}

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

.page-tin-tc .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.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 20px;
  background-color: #2e2e2e;
  color: var(--text-light);
}

.page-tin-tc .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 20px;
}

.page-tin-tc .faq-answer p {
  margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-tin-tc-hero h1 {
    font-size: 2.5em;
  }

  .page-tin-tc-hero p {
    font-size: 1em;
  }

  .page-tin-tc-news-grid,
  .page-tin-tc-promo-grid,
  .page-tin-tc-guide-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-tin-tc-section {
    padding: 40px 0;
  }

  .page-tin-tc-news-card h3,
  .page-tin-tc-promo-card h3,
  .page-tin-tc-guide-card h3 {
    font-size: 1.2em;
  }

  .page-tin-tc .faq-question {
    padding: 15px;
  }

  .page-tin-tc .faq-question h3 {
    font-size: 1em;
  }

  .page-tin-tc .faq-toggle {
    font-size: 20px;
  }

  .page-tin-tc .faq-answer {
    padding: 0 15px;
  }

  .page-tin-tc .faq-item.active .faq-answer {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .page-tin-tc-hero h1 {
    font-size: 2em;
  }

  .page-tin-tc-cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-tin-tc-news-image,
  .page-tin-tc-promo-image,
  .page-tin-tc-guide-image {
    height: 180px;
  }
}