.page-tin-tc {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

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

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

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

.page-tin-tc-section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  margin: 15px auto 0;
  border-radius: 2px;
}

/* Hero Section */
.page-tin-tc-hero {
  background: linear-gradient(135deg, #0056B3, #003a75);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-tin-tc-hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFD700; /* Vàng kim */
}

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

.page-tin-tc-hero-description a {
  color: #FFD700;
}

.page-tin-tc-hero-description a:hover {
  color: #ffffff;
}

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

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

/* Featured Articles */
.page-tin-tc-featured-articles {
  padding: 60px 0;
  background-color: #ffffff;
}

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

.page-tin-tc-article-card {
  background-color: #fdfdfd;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  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 10px 30px rgba(0, 0, 0, 0.15);
}

.page-tin-tc-article-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-tin-tc-article-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

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

.page-tin-tc-article-title a {
  color: var(--primary-color);
  text-decoration: none;
}

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

.page-tin-tc-article-excerpt {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-tin-tc-read-more {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: #ffffff;
  border-radius: 5px;
  font-size: 0.9em;
  font-weight: bold;
  text-align: center;
  align-self: flex-start;
}

.page-tin-tc-read-more:hover {
  background-color: var(--secondary-color);
  color: #000000;
  text-decoration: none;
}

/* Latest News */
.page-tin-tc-latest-news {
  padding: 60px 0;
}

.page-tin-tc-news-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.page-tin-tc-news-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: flex-start;
  padding: 20px;
  transition: box-shadow 0.3s ease;
}

.page-tin-tc-news-item:hover {
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.page-tin-tc-news-thumbnail {
  width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 25px;
  flex-shrink: 0;
}

.page-tin-tc-news-details {
  flex-grow: 1;
}

.page-tin-tc-news-title {
  font-size: 1.4em;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-tin-tc-news-title a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-tin-tc-news-title a:hover {
  color: var(--secondary-color);
}

.page-tin-tc-news-meta {
  font-size: 0.9em;
  color: #777777;
  margin-bottom: 10px;
}

.page-tin-tc-news-excerpt {
  font-size: 1em;
  color: #555555;
}

.page-tin-tc-pagination {
  text-align: center;
  margin-top: 40px;
}

.page-tin-tc-page-link {
  display: inline-block;
  padding: 10px 18px;
  margin: 0 5px;
  border: 1px solid var(--primary-color);
  border-radius: 5px;
  color: var(--primary-color);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-tin-tc-page-link.page-tin-tc-active,
.page-tin-tc-page-link:hover {
  background-color: var(--primary-color);
  color: #ffffff;
}

/* FAQ Section */
.page-tin-tc-faq {
  padding: 60px 0;
  background-color: #f0f4f8;
}

.page-tin-tc-faq-list {
  margin-top: 30px;
}

.page-tin-tc-faq .faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #ffffff;
  overflow: hidden;
}

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

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

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

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

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

.page-tin-tc-faq .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: #555555;
}

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

.page-tin-tc-faq .faq-answer p {
  margin-top: 0;
  margin-bottom: 0;
}

.page-tin-tc-faq .faq-answer a {
  color: var(--primary-color);
}

/* Call to Action Bottom */
.page-tin-tc-cta-bottom {
  background: linear-gradient(135deg, #003a75, #0056B3);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.page-tin-tc-cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700;
}

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

.page-tin-tc-cta-description a {
  color: #FFD700;
}

.page-tin-tc-cta-description a:hover {
  color: #ffffff;
}

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

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

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

  .page-tin-tc-news-title {
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .page-tin-tc-hero-title {
    font-size: 2.2em;
  }

  .page-tin-tc-hero-description {
    font-size: 1.1em;
  }

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

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

  .page-tin-tc-news-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-tin-tc-news-thumbnail {
    width: 100%;
    height: 200px;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .page-tin-tc-news-details {
    width: 100%;
  }

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

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

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

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

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

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

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

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

  .page-tin-tc-article-title {
    font-size: 1.2em;
  }

  .page-tin-tc-news-title {
    font-size: 1.1em;
  }

  .page-tin-tc-pagination .page-tin-tc-page-link {
    padding: 8px 14px;
    font-size: 0.85em;
  }

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

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