.page-tin-tc {
  --primary-color: #FFD700;
  --secondary-color: #8B0000;
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #f5f5f5;
  --background-dark: #222222;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

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

/* Hero Section */
.page-tin-tc .hero-news-section {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #a00000 100%); /* Dark red gradient */
  color: var(--text-light);
  padding: 80px 0;
  text-align: center;
}

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

.page-tin-tc .hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-tin-tc .hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-tin-tc .cta-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-tin-tc .cta-button:hover {
  background-color: #FFC400;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Section Titles */
.page-tin-tc .section-title {
  font-size: 2.5em;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

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

/* Latest Articles Section */
.page-tin-tc .latest-articles-section {
  padding: 80px 0;
  background-color: var(--background-light);
}

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

.page-tin-tc .article-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-tin-tc .article-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.page-tin-tc .article-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

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

.page-tin-tc .article-title {
  font-size: 1.6em;
  margin-bottom: 15px;
  line-height: 1.3;
}

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

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

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

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

.page-tin-tc .read-more {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  align-self: flex-start;
}

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

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

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

.page-tin-tc .category-list li {
  background-color: var(--primary-color);
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-tin-tc .category-list li a {
  display: block;
  padding: 12px 25px;
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
}

.page-tin-tc .category-list li:hover {
  background-color: #FFC400;
  transform: translateY(-3px);
}

/* Featured Article Full */
.page-tin-tc .featured-article-full {
  padding: 80px 0;
  background-color: var(--background-light);
}

.page-tin-tc .featured-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  padding: 40px;
}

.page-tin-tc .featured-image {
  flex: 1;
  max-width: 50%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-tin-tc .featured-text {
  flex: 1;
}

.page-tin-tc .featured-title {
  font-size: 2em;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

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

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

.page-tin-tc .featured-summary {
  font-size: 1.1em;
  color: #444;
  margin-bottom: 25px;
}

/* Call to Action Section */
.page-tin-tc .call-to-action-section {
  background: var(--secondary-color);
  color: var(--text-light);
  padding: 70px 0;
  text-align: center;
}

.page-tin-tc .cta-title {
  font-size: 3em;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-tin-tc .cta-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  opacity: 0.9;
}

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

.page-tin-tc .cta-button.primary {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.page-tin-tc .cta-button.secondary {
  background-color: #ffffff;
  color: var(--secondary-color);
  border: 2px solid var(--primary-color);
}

.page-tin-tc .cta-button.secondary:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
  border-color: var(--primary-color);
}

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

.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: 8px;
  overflow: hidden;
}

.page-tin-tc .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #fff;
  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: var(--text-dark);
}

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

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

.faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 20px 25px;
  border-top: 1px solid #eee;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .page-tin-tc .hero-title {
    font-size: 2.8em;
  }
  .page-tin-tc .hero-description {
    font-size: 1.1em;
  }
  .page-tin-tc .section-title {
    font-size: 2em;
  }
  .page-tin-tc .articles-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-tin-tc .featured-content {
    flex-direction: column;
  }
  .page-tin-tc .featured-image {
    max-width: 100%;
  }
  .page-tin-tc .cta-title {
    font-size: 2.5em;
  }
  .page-tin-tc .cta-description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-tin-tc .hero-news-section {
    padding: 60px 0;
  }
  .page-tin-tc .hero-title {
    font-size: 2.2em;
  }
  .page-tin-tc .hero-description {
    font-size: 1em;
  }
  .page-tin-tc .cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-tin-tc .section-title {
    font-size: 1.8em;
    margin-bottom: 40px;
  }
  .page-tin-tc .latest-articles-section, .page-tin-tc .categories-section, .page-tin-tc .featured-article-full, .page-tin-tc .call-to-action-section, .page-tin-tc .faq-section {
    padding: 50px 0;
  }
  .page-tin-tc .article-image {
    height: 200px;
  }
  .page-tin-tc .article-title {
    font-size: 1.4em;
  }
  .page-tin-tc .featured-content {
    padding: 25px;
  }
  .page-tin-tc .featured-title {
    font-size: 1.8em;
  }
  .page-tin-tc .cta-title {
    font-size: 2em;
  }
  .page-tin-tc .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-tin-tc .cta-button {
    width: 80%;
  }
  .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;
  }
  .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-tin-tc .hero-title {
    font-size: 1.8em;
  }
  .page-tin-tc .hero-description {
    font-size: 0.9em;
  }
  .page-tin-tc .section-title {
    font-size: 1.5em;
  }
  .page-tin-tc .articles-grid {
    grid-template-columns: 1fr;
  }
  .page-tin-tc .featured-title {
    font-size: 1.5em;
  }
  .page-tin-tc .cta-title {
    font-size: 1.8em;
  }
  .page-tin-tc .cta-button {
    width: 90%;
  }
}