:root {
  --primary-color: #0A1931;
  --secondary-color: #FFD700;
  --accent-color: #E74C3C;
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-light: #f4f7f6;
  --bg-dark: #0A1931;
  --card-bg: #1A2B47;
  --border-color: #3A4A67;
}

.page-tin-tc {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
}

.page-tin-tc h1, .page-tin-tc h2, .page-tin-tc h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-tin-tc h1 {
  font-size: 3.2em;
  font-weight: bold;
  color: var(--secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-tin-tc h2 {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
  color: var(--primary-color);
}

.page-tin-tc h3 {
  font-size: 1.8em;
  color: var(--primary-color);
}

.page-tin-tc p {
  margin-bottom: 1em;
  font-size: 1.1em;
  color: var(--text-dark);
}

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

.page-tin-tc a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

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

/* Hero Section */
.page-tin-tc__hero-section {
  background: linear-gradient(to right, var(--primary-color), #2C3E50);
  color: var(--text-light);
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-tin-tc__hero-section .page-tin-tc__container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
}

.page-tin-tc__hero-content {
  flex: 1;
  text-align: left;
}

.page-tin-tc__hero-content h1 {
  color: var(--secondary-color);
  font-size: 3.5em;
  margin-bottom: 20px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}

.page-tin-tc__hero-content p {
  font-size: 1.2em;
  line-height: 1.8;
  color: #e0e0e0;
}

.page-tin-tc__hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-tin-tc__hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  object-fit: cover;
}

.page-tin-tc__cta-button {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--text-light);
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 30px;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

.page-tin-tc__cta-button:hover {
  background-color: #C0392B;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.6);
  text-decoration: none;
}

/* News Categories / Article Grid */
.page-tin-tc__news-categories {
  padding: 60px 0;
  background-color: var(--bg-light);
}

.page-tin-tc__news-categories p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.1em;
}

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

.page-tin-tc__article-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-tin-tc__article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

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

.page-tin-tc__card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-tin-tc__card-content h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-tin-tc__card-content h3 a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-tin-tc__card-content h3 a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.page-tin-tc__card-content p {
  font-size: 0.95em;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-tin-tc__read-more {
  display: inline-block;
  color: var(--accent-color);
  font-weight: bold;
  font-size: 1em;
  margin-top: auto; /* Push to bottom */
}

.page-tin-tc__read-more:hover {
  text-decoration: underline;
}

/* Why Follow Section */
.page-tin-tc__why-follow {
  background-color: var(--card-bg);
  color: var(--text-light);
  padding: 80px 0;
}

.page-tin-tc__why-follow h2 {
  color: var(--secondary-color);
}

.page-tin-tc__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-tin-tc__benefit-item {
  text-align: center;
  padding: 30px;
  background-color: #1A2B47;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-tin-tc__benefit-item:hover {
  transform: translateY(-8px);
  background-color: #2C3E50;
}

.page-tin-tc__benefit-item img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5)); /* Subtle glow for icons */
}

.page-tin-tc__benefit-item h3 {
  color: var(--secondary-color);
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-tin-tc__benefit-item p {
  color: #cccccc;
  font-size: 1em;
}

/* FAQ Section */
.page-tin-tc__faq-section {
  padding: 60px 0;
  background-color: var(--bg-light);
}

.page-tin-tc__faq-list {
  max-width: 900px;
  margin: 40px auto 0;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  background-color: #ffffff;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: var(--primary-color);
  color: var(--text-light);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #1A2B47;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.3em;
  color: var(--text-light);
}

.faq-toggle {
  font-size: 2em;
  font-weight: bold;
  transition: transform 0.3s ease;
  color: var(--secondary-color);
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--accent-color);
}

.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: var(--text-dark);
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 25px;
  border-top: 1px solid var(--border-color);
}

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

/* Final CTA Section */
.page-tin-tc__cta-final {
  background: linear-gradient(to right, #2C3E50, var(--primary-color));
  color: var(--text-light);
  padding: 80px 0;
  text-align: center;
}

.page-tin-tc__cta-final h2 {
  color: var(--secondary-color);
  font-size: 2.8em;
  margin-bottom: 25px;
}

.page-tin-tc__cta-final p {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #e0e0e0;
}

.page-tin-tc__cta-button--large {
  padding: 18px 45px;
  font-size: 1.4em;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-tin-tc__hero-section .page-tin-tc__container {
    flex-direction: column;
    text-align: center;
  }

  .page-tin-tc__hero-content {
    text-align: center;
  }

  .page-tin-tc__hero-content h1 {
    font-size: 2.8em;
  }

  .page-tin-tc__hero-image {
    margin-top: 40px;
  }

  .page-tin-tc h2 {
    font-size: 2em;
  }

  .page-tin-tc h3 {
    font-size: 1.5em;
  }

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

  .page-tin-tc__article-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .page-tin-tc__benefit-item img {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 768px) {
  .page-tin-tc__hero-section {
    padding: 60px 0;
  }

  .page-tin-tc__hero-content h1 {
    font-size: 2.2em;
  }

  .page-tin-tc__hero-content p {
    font-size: 1em;
  }

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

  .page-tin-tc__news-categories, .page-tin-tc__why-follow, .page-tin-tc__faq-section, .page-tin-tc__cta-final {
    padding: 40px 0;
  }

  .page-tin-tc h2 {
    font-size: 1.8em;
  }

  .page-tin-tc__article-card img {
    height: 180px;
  }

  .page-tin-tc__card-content {
    padding: 20px;
  }

  .faq-question {
    padding: 15px 20px;
  }

  .faq-question h3 {
    font-size: 1.1em;
  }

  .faq-toggle {
    font-size: 1.8em;
  }

  .faq-answer {
    padding: 15px 20px;
  }

  .page-tin-tc__cta-final h2 {
    font-size: 2.2em;
  }

  .page-tin-tc__cta-final p {
    font-size: 1em;
  }

  .page-tin-tc__cta-button--large {
    padding: 15px 35px;
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-tin-tc__hero-content h1 {
    font-size: 1.8em;
  }

  .page-tin-tc h2 {
    font-size: 1.5em;
  }

  .page-tin-tc h3 {
    font-size: 1.3em;
  }

  .page-tin-tc__article-grid {
    grid-template-columns: 1fr;
  }

  .page-tin-tc__benefits-grid {
    grid-template-columns: 1fr;
  }

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

  .faq-toggle {
    font-size: 1.5em;
  }

  .page-tin-tc__cta-final h2 {
    font-size: 1.8em;
  }
}