.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: #3A0CA3; /* Primary color */
  margin-bottom: 20px;
  line-height: 1.3;
}

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

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

.page-tin-tc h2::after {
  content: '';
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Secondary color */
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.page-tin-tc h3 {
  font-size: 1.8em;
  color: #4a148c;
}

.page-tin-tc p {
  margin-bottom: 15px;
  color: #555;
}

.page-tin-tc .cta-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #FFD700; /* Secondary color */
  color: #3A0CA3; /* Primary color */
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-tin-tc .cta-button:hover {
  background-color: #e6c200;
  color: #2a087a;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Hero News Banner Section */
.page-tin-tc .hero-news-banner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 0;
  background-color: #3A0CA3;
  color: #fff;
  overflow: hidden;
}

.page-tin-tc .hero-news-banner .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.page-tin-tc .hero-news-content h1 {
  color: #FFD700;
  font-size: 3.8em;
  margin-bottom: 25px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-tin-tc .hero-news-content p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-tin-tc .hero-news-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-tin-tc .hero-news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

/* Latest News Section */
.page-tin-tc .latest-news {
  padding: 60px 0;
  background-color: #f8f8f8;
}

.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: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-tin-tc .news-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.page-tin-tc .news-card h3 {
  font-size: 1.4em;
  margin: 20px 20px 10px;
  color: #3A0CA3;
  min-height: 70px;
}

.page-tin-tc .news-card p {
  font-size: 0.95em;
  color: #666;
  padding: 0 20px;
  margin-bottom: 15px;
  min-height: 80px;
}

.page-tin-tc .news-card .news-date {
  display: block;
  font-size: 0.85em;
  color: #999;
  padding: 0 20px 20px;
}

.page-tin-tc .view-all-button {
  margin-top: 50px;
  text-align: center;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

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

.page-tin-tc .categories-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.page-tin-tc .category-item {
  display: inline-block;
  padding: 12px 25px;
  background-color: #3A0CA3; /* Primary color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-tin-tc .category-item:hover {
  background-color: #FFD700; /* Secondary color */
  color: #3A0CA3;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* In-depth Article Section */
.page-tin-tc .in-depth-article {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-tin-tc .in-depth-article h2 {
  text-align: left;
  padding-top: 0;
  margin-bottom: 30px;
}

.page-tin-tc .in-depth-article h2::after {
  left: 0;
  transform: translateX(0);
}

.page-tin-tc .in-depth-article h3 {
  margin-top: 40px;
  margin-bottom: 15px;
  font-size: 2em;
}

.page-tin-tc .article-main-image {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Call to Action for Updates Section */
.page-tin-tc .call-to-action-updates {
  padding: 80px 0;
  background: linear-gradient(135deg, #3A0CA3, #6a1bb8); /* Gradient with primary color */
  color: #ffffff;
  text-align: center;
}

.page-tin-tc .call-to-action-updates h2 {
  color: #FFD700;
  font-size: 3em;
  margin-bottom: 25px;
}

.page-tin-tc .call-to-action-updates p {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #e0e0e0;
}

.page-tin-tc .cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-tin-tc .cta-group .cta-button.primary {
  background-color: #FFD700;
  color: #3A0CA3;
}

.page-tin-tc .cta-group .cta-button.primary:hover {
  background-color: #e6c200;
  color: #2a087a;
}

.page-tin-tc .cta-group .cta-button.secondary {
  background-color: transparent;
  border: 2px solid #FFD700;
  color: #FFD700;
}

.page-tin-tc .cta-group .cta-button.secondary:hover {
  background-color: #FFD700;
  color: #3A0CA3;
  transform: translateY(-2px);
}

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

.page-tin-tc .faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-tin-tc .faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

.page-tin-tc .faq-question h3 {
  margin: 0;
  font-size: 1.25em;
  color: #3A0CA3;
}

.page-tin-tc .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFD700; /* Secondary color for toggle */
  transition: transform 0.3s ease;
  line-height: 1;
}

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

.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-color: #fefefe;
  color: #444;
}

.page-tin-tc .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 20px 25px;
  border: 1px solid #e0e0e0;
  border-top: none;
  border-radius: 0 0 8px 8px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-tin-tc h1 {
    font-size: 2.8em;
  }
  .page-tin-tc h2 {
    font-size: 2em;
  }
  .page-tin-tc h3 {
    font-size: 1.6em;
  }
  .page-tin-tc .hero-news-content h1 {
    font-size: 3em;
  }
  .page-tin-tc .news-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  .page-tin-tc .news-card h3 {
    min-height: 60px;
  }
  .page-tin-tc .news-card p {
    min-height: 70px;
  }
}

@media (max-width: 768px) {
  .page-tin-tc h1 {
    font-size: 2.2em;
  }
  .page-tin-tc h2 {
    font-size: 1.8em;
  }
  .page-tin-tc h3 {
    font-size: 1.4em;
  }
  .page-tin-tc .hero-news-banner {
    padding: 60px 0;
  }
  .page-tin-tc .hero-news-content h1 {
    font-size: 2.5em;
  }
  .page-tin-tc .hero-news-content p {
    font-size: 1em;
  }
  .page-tin-tc .news-grid {
    grid-template-columns: 1fr;
  }
  .page-tin-tc .news-card h3 {
    min-height: auto;
  }
  .page-tin-tc .news-card p {
    min-height: auto;
  }
  .page-tin-tc .categories-list {
    flex-direction: column;
    align-items: center;
  }
  .page-tin-tc .category-item {
    width: 80%;
    text-align: center;
  }
  .page-tin-tc .in-depth-article h2 {
    text-align: center;
  }
  .page-tin-tc .in-depth-article h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .page-tin-tc .in-depth-article h3 {
    font-size: 1.6em;
  }
  .page-tin-tc .call-to-action-updates h2 {
    font-size: 2.2em;
  }
  .page-tin-tc .cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-tin-tc .cta-button {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  .page-tin-tc .faq-question h3 {
    font-size: 1.1em;
    padding-right: 10px;
  }
  .page-tin-tc .faq-toggle {
    font-size: 20px;
  }
}