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

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

.page-tin-tc .section-title {
  font-size: 2.5em;
  color: #007bff;
  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: #ffc107;
  border-radius: 2px;
}

.page-tin-tc .section-description {
  text-align: center;
  font-size: 1.1em;
  color: #555;
  margin-bottom: 50px;
}

.page-tin-tc .highlight-text {
  color: #007bff;
  font-weight: bold;
}

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

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

.page-tin-tc .cta-button {
  display: inline-block;
  background-color: #ffc107;
  color: #333;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-tin-tc .cta-button:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
  color: #000;
}

/* Hero Banner Section */
.page-tin-tc .hero-banner-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 450px; /* Minimum height for banner */
  background-color: #007bff;
}

.page-tin-tc .hero-banner-container {
  position: relative;
  width: 100%;
  max-width: 1400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

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

.page-tin-tc .hero-banner-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-tin-tc .hero-banner-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

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

/* Intro Section */
.page-tin-tc .intro-section {
  padding: 60px 0;
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
}

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

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

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

.page-tin-tc .category-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  text-decoration: none;
  color: #333;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 350px;
}

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

.page-tin-tc .category-image {
  width: 100%;
  max-width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-tin-tc .category-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 10px;
}

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

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

.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 12px 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 8px 20px rgba(0, 0, 0, 0.15);
}

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

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

.page-tin-tc .news-title {
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-tin-tc .news-title a {
  color: #007bff;
  text-decoration: none;
}

.page-tin-tc .news-title a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.page-tin-tc .list-item {
  background-color: #fefefe;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  transition: box-shadow 0.3s ease;
}

.page-tin-tc .list-item:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.page-tin-tc .item-title {
  font-size: 1.3em;
  margin-bottom: 8px;
}

.page-tin-tc .item-title a {
  color: #007bff;
  text-decoration: none;
}

.page-tin-tc .item-title a:hover {
  text-decoration: underline;
}

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

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

/* Guides & Tips Section */
.page-tin-tc .guides-tips-section {
  padding: 80px 0;
  background-color: #f0f3f6;
}

.page-tin-tc .tips-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.page-tin-tc .tips-item {
  background-color: #ffffff;
  border-left: 5px solid #ffc107;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  padding: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-tin-tc .tips-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.page-tin-tc .tips-title {
  font-size: 1.4em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-tin-tc .tips-text {
  font-size: 1em;
  color: #555;
}

.page-tin-tc .cta-banner {
  background-color: #007bff;
  color: #ffffff;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  margin-top: 60px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-tin-tc .cta-text {
  font-size: 1.4em;
  margin-bottom: 25px;
  font-weight: 300;
}

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

.page-tin-tc .faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

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

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

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

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

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

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

.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: #f9f9f9;
  color: #555;
}

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

.page-tin-tc .faq-answer p {
  margin: 0;
  font-size: 1em;
  line-height: 1.7;
}

/* Final CTA Section */
.page-tin-tc .final-cta-section {
  padding: 80px 0;
  background-color: #007bff;
  color: #ffffff;
  text-align: center;
}

.page-tin-tc .final-cta-section .section-title {
  color: #ffffff;
}

.page-tin-tc .final-cta-section .section-title::after {
  background-color: #ffc107;
}

.page-tin-tc .final-cta-section .section-description {
  color: #e0e0e0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-tin-tc .final-cta-section .cta-button {
  background-color: #ffc107;
  color: #333;
  font-size: 1.2em;
  padding: 18px 40px;
}

.page-tin-tc .final-cta-section .cta-button:hover {
  background-color: #e0a800;
  color: #000;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-tin-tc .hero-banner-title {
    font-size: 2.8em;
  }
  .page-tin-tc .hero-banner-description {
    font-size: 1.1em;
  }
  .page-tin-tc .section-title {
    font-size: 2em;
  }
  .page-tin-tc .categories-grid, .page-tin-tc .news-grid, .page-tin-tc .tips-list {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-tin-tc .hero-banner-title {
    font-size: 2.2em;
  }
  .page-tin-tc .hero-banner-description {
    font-size: 1em;
  }
  .page-tin-tc .cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-tin-tc .section-title {
    font-size: 1.8em;
  }
  .page-tin-tc .section-description {
    font-size: 1em;
  }
  .page-tin-tc .news-image {
    height: 180px;
  }
  .page-tin-tc .news-title, .page-tin-tc .category-title, .page-tin-tc .tips-title {
    font-size: 1.3em;
  }
  .page-tin-tc .faq-question h3 {
    font-size: 1.1em;
  }
  .page-tin-tc .faq-question {
    padding: 15px 20px;
  }
  .page-tin-tc .faq-answer {
    padding: 0 20px;
  }
  .page-tin-tc .faq-item.active .faq-answer {
    padding: 15px 20px 20px;
  }
}

@media (max-width: 480px) {
  .page-tin-tc .hero-banner-title {
    font-size: 1.8em;
  }
  .page-tin-tc .hero-banner-description {
    font-size: 0.9em;
  }
  .page-tin-tc .section-title {
    font-size: 1.6em;
  }
  .page-tin-tc .categories-grid, .page-tin-tc .news-grid, .page-tin-tc .tips-list {
    grid-template-columns: 1fr;
  }
  .page-tin-tc .news-image {
    height: 160px;
  }
  .page-tin-tc .news-title, .page-tin-tc .category-title, .page-tin-tc .tips-title {
    font-size: 1.2em;
  }
  .page-tin-tc .cta-banner .cta-text {
    font-size: 1.2em;
  }
  .page-tin-tc .final-cta-section .cta-button {
    font-size: 1.1em;
    padding: 15px 30px;
  }
  .page-tin-tc .faq-question h3 {
    font-size: 1em;
  }
  .page-tin-tc .faq-toggle {
    font-size: 20px;
  }
}