.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 20px;
}

.page-tin-tc .hero-section {
  background: linear-gradient(135deg, #2D3E50 0%, #3a506b 100%);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  margin-bottom: 40px;
}

.page-tin-tc .hero-title {
  font-size: 3.2em;
  margin-bottom: 15px;
  font-weight: bold;
  color: #E7B10A;
}

.page-tin-tc .hero-subtitle {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}

.page-tin-tc .section-title {
  font-size: 2.5em;
  color: #2D3E50;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-tin-tc .section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #E7B10A;
  border-radius: 2px;
}

.page-tin-tc .latest-news-section, .page-tin-tc .featured-articles-section, .page-tin-tc .category-section, .page-tin-tc .faq-section, .page-tin-tc .call-to-action-section {
  padding: 60px 0;
}

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

.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 .news-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

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

.page-tin-tc .news-card-title {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #2D3E50;
  line-height: 1.3;
}

.page-tin-tc .news-card-title a {
  color: #2D3E50;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-tin-tc .news-card-title a:hover {
  color: #E7B10A;
}

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

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

.page-tin-tc .read-more-btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: #E7B10A;
  color: #2D3E50;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  align-self: flex-start;
}

.page-tin-tc .read-more-btn:hover {
  background-color: #2D3E50;
  color: #ffffff;
}

.page-tin-tc .category-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.page-tin-tc .category-item {
  display: block;
  padding: 12px 25px;
  background-color: #2D3E50;
  color: #ffffff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  border: 2px solid #2D3E50;
}

.page-tin-tc .category-item:hover {
  background-color: #E7B10A;
  color: #2D3E50;
  transform: translateY(-3px);
  border-color: #E7B10A;
}

.page-tin-tc .featured-article {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  overflow: hidden;
}

.page-tin-tc .featured-article:last-child {
  margin-bottom: 0;
}

.page-tin-tc .featured-article-img {
  width: 40%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-tin-tc .featured-article-content {
  padding: 30px;
  width: 60%;
}

.page-tin-tc .featured-article h3 {
  font-size: 1.8em;
  margin-bottom: 10px;
  color: #2D3E50;
}

.page-tin-tc .featured-article h3 a {
  color: #2D3E50;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-tin-tc .featured-article h3 a:hover {
  color: #E7B10A;
}

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

.page-tin-tc .featured-article p {
  font-size: 1.05em;
  color: #444;
  margin-bottom: 15px;
}

/* FAQ styles */
.page-tin-tc .faq-list {
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

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

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

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

.page-tin-tc .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 25px;
  background-color: #f9f9f9;
  color: #555;
}

.page-tin-tc .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 20px 25px;
}

.page-tin-tc .faq-answer p {
  margin: 0;
  font-size: 1.05em;
}

/* Call to Action */
.page-tin-tc .call-to-action-section {
  background: linear-gradient(90deg, #2D3E50, #4a627a);
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
  border-radius: 10px;
  margin: 60px auto;
  max-width: 1200px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

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

.page-tin-tc .cta-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.page-tin-tc .cta-button {
  display: inline-block;
  padding: 18px 45px;
  background-color: #E7B10A;
  color: #2D3E50;
  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.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-tin-tc .cta-button:hover {
  background-color: #ffffff;
  color: #2D3E50;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-tin-tc .featured-article {
    flex-direction: column;
  }

  .page-tin-tc .featured-article-img,
  .page-tin-tc .featured-article-content {
    width: 100%;
  }

  .page-tin-tc .featured-article-img {
    height: 250px;
  }
}

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

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

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

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

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

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

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

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

  .page-tin-tc .category-list {
    gap: 10px;
  }

  .page-tin-tc .category-item {
    padding: 10px 20px;
    font-size: 0.9em;
  }

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

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

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

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

@media (max-width: 480px) {
  .page-tin-tc .hero-section {
    padding: 60px 15px;
  }

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

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

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

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

  .page-tin-tc .news-card-content {
    padding: 20px;
  }

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

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

  .page-tin-tc .cta-button {
    width: 100%;
    max-width: 280px;
    font-size: 1em;
  }

  .page-tin-tc .category-list {
    justify-content: flex-start;
  }

  .page-tin-tc .category-item {
    flex: 1 1 auto;
    text-align: center;
  }
}