.page-tin-tc {
  --primary-color: #FFD700;
  --secondary-color: #1E90FF;
  --dark-bg: #1a1a1a;
  --light-text: #f0f0f0;
  --card-bg: #2a2a2a;
  --border-color: #444;
  font-family: 'Arial', sans-serif;
  color: var(--light-text);
  background-color: var(--dark-bg);
}

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

.page-tin-tc section {
  padding: 60px 0;
}

.page-tin-tc h1,
.page-tin-tc h2,
.page-tin-tc h3 {
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 30px;
}

.page-tin-tc h1 {
  font-size: 2.8em;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-tin-tc h2 {
  font-size: 2.2em;
  font-weight: bold;
  color: var(--secondary-color);
}

.page-tin-tc h3 {
  font-size: 1.6em;
  color: var(--light-text);
}

.page-tin-tc p {
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

.page-tin-tc strong {
  color: var(--primary-color);
}

.page-tin-tc a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-tin-tc a:hover {
  color: var(--primary-color);
}

.page-tin-tc .btn-primary,
.page-tin-tc .cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: var(--primary-color);
  color: var(--dark-bg);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-tin-tc .btn-primary:hover,
.page-tin-tc .cta-button:hover {
  background: var(--secondary-color);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.page-tin-tc .btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  background: var(--secondary-color);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1em;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid var(--secondary-color);
  cursor: pointer;
  text-align: center;
}

.page-tin-tc .btn-secondary:hover {
  background: transparent;
  color: var(--secondary-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

/* Hero Section */
.page-tin-tc .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #1a1a1a, #333);
}

.page-tin-tc .hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-tin-tc .hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-tin-tc .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page-tin-tc .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 20px;
}

.page-tin-tc .hero-content h1 {
  margin-top: 0;
  font-size: 3.5em;
  color: var(--primary-color);
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
}

.page-tin-tc .hero-content p {
  font-size: 1.2em;
  color: var(--light-text);
  max-width: 800px;
  margin: 0 auto 30px;
}

/* Section Intro */
.page-tin-tc .section-intro {
  background-color: var(--card-bg);
  text-align: center;
}

.page-tin-tc .section-intro p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-tin-tc .section-intro .btn-secondary {
  margin-top: 20px;
}

/* Latest News Grid */
.page-tin-tc .section-latest-news {
  background-color: var(--dark-bg);
}

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

.page-tin-tc .news-card {
  background-color: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  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 12px 25px rgba(0, 0, 0, 0.4);
}

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

.page-tin-tc .news-card h3 {
  font-size: 1.4em;
  margin: 20px 20px 10px;
  text-align: left;
  flex-grow: 1;
}

.page-tin-tc .news-card h3 a {
  color: var(--primary-color);
  display: block;
}

.page-tin-tc .news-card h3 a:hover {
  color: var(--secondary-color);
}

.page-tin-tc .news-card p {
  font-size: 0.95em;
  color: #bbb;
  padding: 0 20px;
  text-align: left;
}

.page-tin-tc .news-card .read-more {
  display: inline-block;
  margin: 15px 20px 20px;
  color: var(--secondary-color);
  font-weight: bold;
}

.page-tin-tc .news-card .read-more:hover {
  color: var(--primary-color);
}

.page-tin-tc .call-to-action-text {
  text-align: center;
  font-size: 1.1em;
  margin-top: 40px;
}

/* Featured Articles List */
.page-tin-tc .section-featured-articles {
  background-color: var(--card-bg);
}

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

.page-tin-tc .article-item {
  background-color: var(--dark-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-tin-tc .article-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-tin-tc .article-item img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  flex-shrink: 0;
  border-right: 1px solid var(--border-color);
}

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

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

.page-tin-tc .article-item h3 a {
  color: var(--primary-color);
}

.page-tin-tc .article-item h3 a:hover {
  color: var(--secondary-color);
}

.page-tin-tc .article-item p {
  font-size: 0.95em;
  color: #bbb;
  margin-bottom: 15px;
}

/* FAQ Section */
.page-tin-tc .section-faq {
  background-color: var(--dark-bg);
}

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

.page-tin-tc .faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background-color: var(--card-bg);
  overflow: hidden;
}

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

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

.page-tin-tc .faq-question h3 {
  margin: 0;
  font-size: 1.25em;
  color: var(--light-text);
  text-align: left;
}

.page-tin-tc .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

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

.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: #222;
  color: #ccc;
}

.page-tin-tc .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 20px 25px;
  border-top: 1px solid var(--border-color);
}

.page-tin-tc .faq-answer p {
  margin: 0;
  text-align: left;
}

/* CTA Bottom Section */
.page-tin-tc .section-cta-bottom {
  background: linear-gradient(135deg, var(--secondary-color), #007bff);
  text-align: center;
  color: #fff;
  padding: 80px 0;
}

.page-tin-tc .section-cta-bottom h2 {
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-tin-tc .section-cta-bottom p {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-tin-tc .section-cta-bottom .btn-primary {
  background: var(--primary-color);
  color: var(--dark-bg);
}

.page-tin-tc .section-cta-bottom .btn-primary:hover {
  background: #fff;
  color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-tin-tc h1 {
    font-size: 2.5em;
  }
  .page-tin-tc h2 {
    font-size: 1.8em;
  }
  .page-tin-tc h3 {
    font-size: 1.3em;
  }
  .page-tin-tc .article-item {
    flex-direction: column;
    text-align: center;
  }
  .page-tin-tc .article-item img {
    width: 100%;
    height: 250px;
    border-right: none;
    border-bottom: 1px solid var(--border-color);
  }
  .page-tin-tc .article-item .article-content {
    padding: 20px;
  }
  .page-tin-tc .article-item h3 {
    text-align: center;
  }
  .page-tin-tc .article-item p {
    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-section {
    padding: 60px 15px;
  }
  .page-tin-tc .hero-content h1 {
    font-size: 2.5em;
  }
  .page-tin-tc .hero-content p {
    font-size: 1em;
  }
  .page-tin-tc .news-grid {
    grid-template-columns: 1fr;
  }
  .page-tin-tc .news-card h3,
  .page-tin-tc .news-card p {
    text-align: center;
  }
  .page-tin-tc .news-card .read-more {
    display: block;
    text-align: center;
  }
  .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;
  }
  .page-tin-tc .section-cta-bottom {
    padding: 60px 15px;
  }
}