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

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

.page-tin-tc section {
  padding: 60px 0;
  margin-bottom: 30px;
  border-radius: 8px;
}

.page-tin-tc h1, .page-tin-tc h2, .page-tin-tc h3 {
  color: #007bff; /* Primary color */
  margin-bottom: 25px;
  text-align: center;
  font-weight: bold;
}

.page-tin-tc h1 {
  font-size: 2.8em;
  color: #fff;
}

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

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

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

/* Hero Section for News Page */
.page-tin-tc-hero {
  background: linear-gradient(135deg, #007bff, #0056b3); /* Darker blue gradient */
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-tin-tc-hero .hero-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

.page-tin-tc-hero .hero-content {
  max-width: 800px;
  margin: 0 auto;
}

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

/* CTA Button */
.page-tin-tc .cta-button {
  display: inline-block;
  padding: 15px 35px;
  background-color: #ffc107; /* Secondary color */
  color: #212529;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1em;
  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: #e0a800;
  transform: translateY(-2px);
}

/* Intro Section */
.page-tin-tc-intro {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-tin-tc-intro h2 {
  color: #007bff;
}

/* Categories Section */
.page-tin-tc-categories {
  background-color: #f0f8ff; /* Light blue background */
}

.page-tin-tc-categories h2 {
  color: #007bff;
}

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

.page-tin-tc .category-item {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-tin-tc .category-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-tin-tc .category-item h3 {
  margin-top: 0;
  margin-bottom: 15px;
  text-align: left;
}

.page-tin-tc .category-item .category-link {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-tin-tc .category-item .category-link:hover {
  color: #0056b3;
  text-decoration: underline;
}

.page-tin-tc .category-item p {
  font-size: 0.95em;
  color: #555;
}

/* Featured Articles Section */
.page-tin-tc-featured-articles {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-tin-tc-featured-articles h2 {
  color: #007bff;
}

.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: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-tin-tc .article-content {
  padding: 25px;
}

.page-tin-tc .article-content h3 {
  margin-top: 0;
  margin-bottom: 10px;
  text-align: left;
}

.page-tin-tc .article-content .article-title {
  color: #007bff;
  text-decoration: none;
  font-size: 1.35em;
  font-weight: bold;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.page-tin-tc .article-content .article-title:hover {
  color: #0056b3;
  text-decoration: underline;
}

.page-tin-tc .article-date {
  font-size: 0.9em;
  color: #777;
  margin-bottom: 15px;
}

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

.page-tin-tc .read-more-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ffc107;
  color: #212529;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-tin-tc .read-more-button:hover {
  background-color: #e0a800;
}

/* Latest News Section */
.page-tin-tc-latest-news {
  background-color: #f0f8ff;
}

.page-tin-tc-latest-news h2 {
  color: #007bff;
}

.page-tin-tc .news-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-tin-tc .news-item {
  display: flex;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-tin-tc .news-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.page-tin-tc .news-image {
  width: 200px;
  height: 150px;
  object-fit: cover;
  flex-shrink: 0;
}

.page-tin-tc .news-content {
  padding: 20px;
  flex-grow: 1;
}

.page-tin-tc .news-content h3 {
  margin-top: 0;
  margin-bottom: 8px;
  text-align: left;
}

.page-tin-tc .news-content a {
  color: #007bff;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-tin-tc .news-content a:hover {
  color: #0056b3;
  text-decoration: underline;
}

.page-tin-tc .news-date {
  font-size: 0.85em;
  color: #777;
  margin-bottom: 10px;
}

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

.page-tin-tc .read-more-link {
  color: #ffc107;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  transition: color 0.3s ease;
}

.page-tin-tc .read-more-link:hover {
  color: #e0a800;
  text-decoration: underline;
}

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

/* FAQ Section */
.page-tin-tc-faq {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-tin-tc-faq h2 {
  color: #007bff;
}

.page-tin-tc .faq-list {
  max-width: 800px;
  margin: 0 auto;
}

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

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

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

.page-tin-tc .faq-question h3 {
  margin: 0;
  color: #333;
  font-size: 1.15em;
  text-align: left;
}

.page-tin-tc .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #007bff;
  transition: transform 0.3s ease;
}

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

.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: #ffffff;
}

.page-tin-tc .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 15px 20px;
  border-top: 1px solid #e0e0e0;
}

.page-tin-tc .faq-answer p {
  margin: 0;
  color: #555;
  font-size: 1em;
}

/* CTA Bottom Section */
.page-tin-tc-cta {
  background: linear-gradient(90deg, #007bff, #0056b3);
  color: #ffffff;
  text-align: center;
}

.page-tin-tc-cta h2 {
  color: #ffffff;
  margin-bottom: 20px;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .page-tin-tc h1 {
    font-size: 2.4em;
  }
  .page-tin-tc h2 {
    font-size: 1.8em;
  }
  .page-tin-tc h3 {
    font-size: 1.4em;
  }
  .page-tin-tc .hero-image {
    max-width: 700px;
  }
  .page-tin-tc .article-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-tin-tc .news-item {
    flex-direction: column;
    align-items: center;
  }
  .page-tin-tc .news-image {
    width: 100%;
    height: 200px;
    border-radius: 8px 8px 0 0;
  }
  .page-tin-tc .news-content {
    padding: 15px;
    text-align: center;
  }
  .page-tin-tc .news-content h3 {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-tin-tc section {
    padding: 40px 0;
  }
  .page-tin-tc h1 {
    font-size: 2em;
  }
  .page-tin-tc h2 {
    font-size: 1.6em;
  }
  .page-tin-tc h3 {
    font-size: 1.2em;
  }
  .page-tin-tc-hero {
    padding: 60px 0;
  }
  .page-tin-tc .hero-image {
    max-width: 100%;
  }
  .page-tin-tc .category-grid {
    grid-template-columns: 1fr;
  }
  .page-tin-tc .article-grid {
    grid-template-columns: 1fr;
  }
  .page-tin-tc .article-image {
    height: 200px;
  }
  .page-tin-tc .article-content {
    padding: 20px;
  }
  .page-tin-tc .faq-question {
    padding: 12px 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: 10px 15px;
  }
}

@media (max-width: 480px) {
  .page-tin-tc h1 {
    font-size: 1.8em;
  }
  .page-tin-tc h2 {
    font-size: 1.4em;
  }
  .page-tin-tc h3 {
    font-size: 1.1em;
  }
  .page-tin-tc .cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-tin-tc .news-image {
    height: 180px;
  }
  .page-tin-tc .news-content h3 a {
    font-size: 1.1em;
  }
}