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

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

.page-tin-tc h1, .page-tin-tc h2, .page-tin-tc h3 {
  color: #0A2463;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-tin-tc h1 {
  font-size: 2.8em;
  text-align: center;
}

.page-tin-tc h2 {
  font-size: 2.2em;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
}

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

.page-tin-tc p {
  margin-bottom: 15px;
  font-size: 1.1em;
}

/* Hero Banner for News Page */
.page-tin-tc-hero-banner {
  background: linear-gradient(90deg, #0A2463, #1A3E85);
  padding: 80px 0;
  text-align: center;
  color: #ffffff;
}

.page-tin-tc-hero-banner h1 {
  color: #FFD700;
  font-size: 3.5em;
  margin-bottom: 20px;
}

.page-tin-tc-hero-banner p {
  font-size: 1.3em;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.5;
}

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

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

.page-tin-tc-news-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px 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-news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-tin-tc-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-tin-tc-news-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-tin-tc-news-card h3 {
  font-size: 1.4em;
  padding: 15px 20px 0;
  color: #0A2463;
  margin-bottom: 10px;
}

.page-tin-tc-news-card p {
  font-size: 1em;
  color: #555;
  padding: 0 20px 15px;
  flex-grow: 1;
}

.page-tin-tc-read-more {
  display: block;
  color: #FFD700;
  font-weight: bold;
  padding: 15px 20px;
  border-top: 1px solid #eee;
  background-color: #0A2463;
  text-align: right;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-tin-tc-read-more:hover {
  background-color: #1A3E85;
  color: #ffffff;
}

.page-tin-tc-arrow {
  margin-left: 5px;
}

/* Categories Section */
.page-tin-tc-categories {
  padding: 60px 0;
  background-color: #f0f2f5;
}

.page-tin-tc-category-list {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.page-tin-tc-category-list li a {
  display: block;
  padding: 12px 25px;
  background-color: #0A2463;
  color: #ffffff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.page-tin-tc-category-list li a:hover {
  background-color: #FFD700;
  color: #0A2463;
}

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

.page-tin-tc-article-list {
  margin-top: 40px;
}

.page-tin-tc-article-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}

.page-tin-tc-article-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.page-tin-tc-article-item img {
  width: 250px;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 30px;
  flex-shrink: 0;
}

.page-tin-tc-article-content h3 {
  font-size: 1.5em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-tin-tc-article-content h3 a {
  color: #0A2463;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-tin-tc-article-content h3 a:hover {
  color: #FFD700;
}

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

.page-tin-tc-article-content p {
  font-size: 1em;
  color: #666;
  margin-bottom: 15px;
}

.page-tin-tc-article-content .page-tin-tc-read-more {
  display: inline-flex;
  align-items: center;
  padding: 8px 15px;
  border-radius: 5px;
  background-color: #FFD700;
  color: #0A2463;
  border-top: none;
  font-size: 0.9em;
}

.page-tin-tc-article-content .page-tin-tc-read-more:hover {
  background-color: #e6c200;
  color: #0A2463;
}

.page-tin-tc-pagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  gap: 10px;
}

.page-tin-tc-pagination-link {
  display: block;
  padding: 10px 18px;
  border: 1px solid #0A2463;
  border-radius: 5px;
  text-decoration: none;
  color: #0A2463;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-tin-tc-pagination-link:hover:not(.page-tin-tc-active):not(.page-tin-tc-disabled) {
  background-color: #0A2463;
  color: #ffffff;
}

.page-tin-tc-pagination-link.page-tin-tc-active {
  background-color: #FFD700;
  border-color: #FFD700;
  color: #0A2463;
  font-weight: bold;
  cursor: default;
}

.page-tin-tc-pagination-link.page-tin-tc-disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Call to Action Banner */
.page-tin-tc-cta-banner {
  background: linear-gradient(135deg, #0A2463, #1A3E85);
  padding: 60px 0;
  text-align: center;
  color: #ffffff;
}

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

.page-tin-tc-cta-content p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px;
}

.page-tin-tc-cta-button {
  display: inline-block;
  padding: 15px 40px;
  background-color: #FFD700;
  color: #0A2463;
  text-decoration: none;
  border-radius: 50px;
  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(-3px);
}

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

.page-tin-tc-faq h2 {
  margin-bottom: 40px;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

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

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

.faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: #0A2463;
}

.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #0A2463;
}

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

.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 15px 20px;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .page-tin-tc-hero-banner h1 {
    font-size: 2.8em;
  }
  .page-tin-tc-hero-banner p {
    font-size: 1.1em;
  }
  .page-tin-tc h1 {
    font-size: 2.5em;
  }
  .page-tin-tc h2 {
    font-size: 2em;
  }
  .page-tin-tc-news-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-tin-tc-article-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-tin-tc-article-item img {
    margin-right: 0;
    margin-bottom: 20px;
    width: 100%;
    max-width: 400px;
    height: auto;
  }
  .page-tin-tc-article-content h3, .page-tin-tc-article-content p {
    text-align: center;
  }
  .page-tin-tc-article-content .page-tin-tc-read-more {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .page-tin-tc-hero-banner {
    padding: 60px 0;
  }
  .page-tin-tc-hero-banner h1 {
    font-size: 2.2em;
  }
  .page-tin-tc-hero-banner p {
    font-size: 1em;
  }
  .page-tin-tc h1 {
    font-size: 2em;
  }
  .page-tin-tc h2 {
    font-size: 1.8em;
  }
  .page-tin-tc h3 {
    font-size: 1.3em;
  }
  .page-tin-tc-container {
    padding: 0 15px;
  }
  .page-tin-tc-news-grid {
    gap: 20px;
  }
  .page-tin-tc-news-card img {
    height: 180px;
  }
  .page-tin-tc-category-list {
    flex-direction: column;
    align-items: center;
  }
  .page-tin-tc-article-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
  }
  .page-tin-tc-article-item img {
    width: 100%;
    height: auto;
  }
  .page-tin-tc-cta-content h2 {
    font-size: 2em;
  }
  .page-tin-tc-cta-content p {
    font-size: 1em;
  }
  .page-tin-tc-cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-question {
    padding: 12px 15px;
  }
  .faq-toggle {
    font-size: 20px;
  }
  .faq-item.active .faq-answer {
    padding: 10px 15px;
  }
}

@media (max-width: 480px) {
  .page-tin-tc-hero-banner h1 {
    font-size: 1.8em;
  }
  .page-tin-tc h1 {
    font-size: 1.8em;
  }
  .page-tin-tc h2 {
    font-size: 1.6em;
  }
  .page-tin-tc h3 {
    font-size: 1.2em;
  }
  .page-tin-tc p {
    font-size: 0.95em;
  }
  .page-tin-tc-news-grid {
    grid-template-columns: 1fr;
  }
  .page-tin-tc-news-card img {
    height: 160px;
  }
  .page-tin-tc-category-list li a {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-tin-tc-article-content h3 {
    font-size: 1.3em;
  }
  .page-tin-tc-article-content .page-tin-tc-read-more {
    font-size: 0.85em;
  }
  .page-tin-tc-cta-content h2 {
    font-size: 1.8em;
  }
  .page-tin-tc-cta-button {
    padding: 10px 25px;
    font-size: 0.95em;
  }
  .faq-question h3 {
    font-size: 1em;
  }
  .faq-question {
    padding: 10px 12px;
  }
  .faq-toggle {
    font-size: 18px;
  }
  .faq-item.active .faq-answer {
    padding: 8px 12px;
  }
}