.page-tin-tuc {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0;
  background-color: #1A1A2E;
  line-height: 1.6;
}

.page-tin-tuc-hero {
  background: linear-gradient(135deg, #1A1A2E 0%, #301934 100%);
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 100%;
  margin: 0 auto;
}

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

.page-tin-tuc-hero h1 {
  color: #FFD700;
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-tin-tuc-hero p {
  color: #C0C0C0;
  font-size: 1.15em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-tin-tuc-hero-image {
  width: 100%;
  max-width: 900px;
  margin-top: 30px;
}

.page-tin-tuc-hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

.page-tin-tuc-cta-button {
  display: inline-block;
  padding: 15px 35px;
  background: #E94560;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
}

.page-tin-tuc-cta-button:hover {
  background-color: #FFD700;
  color: #1A1A2E;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-tin-tuc-featured-articles, .page-tin-tuc-latest-news, .page-tin-tuc-cta-section, .page-tin-tuc-faq {
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px 20px;
  background-color: #24243E;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-tin-tuc-featured-articles h2, .page-tin-tuc-latest-news h2, .page-tin-tuc-cta-section h2, .page-tin-tuc-faq h2 {
  color: #E94560;
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 25px;
  position: relative;
}

.page-tin-tuc-featured-articles h2::after, .page-tin-tuc-latest-news h2::after, .page-tin-tuc-cta-section h2::after, .page-tin-tuc-faq h2::after {
  content: '';
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  border-radius: 2px;
}

.page-tin-tuc-featured-articles p, .page-tin-tuc-latest-news p, .page-tin-tuc-cta-section p, .page-tin-tuc-faq p {
  color: #C0C0C0;
  text-align: center;
  font-size: 1.05em;
  margin-bottom: 40px;
}

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

.page-tin-tuc-article-card {
  background-color: #1A1A2E;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.page-tin-tuc-article-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid #3A3A4E;
}

.page-tin-tuc-article-card h3 {
  font-size: 1.4em;
  margin: 20px 20px 10px;
  color: #FFD700;
  flex-grow: 1;
}

.page-tin-tuc-article-card h3 a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-tin-tuc-article-card h3 a:hover {
  color: #E94560;
}

.page-tin-tuc-article-meta {
  font-size: 0.9em;
  color: #888888;
  margin: 0 20px 15px;
  text-align: left;
}

.page-tin-tuc-article-card p {
  font-size: 1em;
  color: #C0C0C0;
  margin: 0 20px 20px;
  text-align: left;
}

.page-tin-tuc-read-more {
  display: inline-block;
  padding: 10px 20px;
  background-color: #E94560;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.95em;
  font-weight: bold;
  margin: 0 20px 20px;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

.page-tin-tuc-read-more:hover {
  background-color: #FFD700;
  color: #1A1A2E;
}

.page-tin-tuc-news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-tin-tuc-news-list li {
  margin-bottom: 30px;
}

.page-tin-tuc-news-item {
  display: flex;
  background-color: #1A1A2E;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-tin-tuc-news-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-tin-tuc-news-item img {
  width: 280px;
  height: 180px;
  object-fit: cover;
  flex-shrink: 0;
}

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

.page-tin-tuc-news-content h3 {
  font-size: 1.3em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-tin-tuc-news-content h3 a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-tin-tuc-news-content h3 a:hover {
  color: #E94560;
}

.page-tin-tuc-news-content .page-tin-tuc-article-meta {
  margin-bottom: 10px;
  text-align: left;
}

.page-tin-tuc-news-content p {
  font-size: 0.95em;
  color: #C0C0C0;
  margin-bottom: 15px;
  text-align: left;
}

.page-tin-tuc-pagination {
  text-align: center;
  margin-top: 50px;
}

.page-tin-tuc-pagination-link {
  display: inline-block;
  padding: 10px 18px;
  margin: 0 5px;
  background-color: #3A3A4E;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-tin-tuc-pagination-link:hover {
  background-color: #E94560;
}

.page-tin-tuc-pagination-link.active {
  background-color: #FFD700;
  color: #1A1A2E;
  font-weight: bold;
}

.page-tin-tuc-cta-section {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(90deg, #E94560 0%, #FFD700 100%);
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(233, 69, 96, 0.4);
}

.page-tin-tuc-cta-section h2 {
  color: #1A1A2E;
}

.page-tin-tuc-cta-section h2::after {
  background-color: #1A1A2E;
}

.page-tin-tuc-cta-section p {
  color: #1A1A2E;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1em;
}

.page-tin-tuc-cta-section .page-tin-tuc-cta-button {
  background-color: #1A1A2E;
  color: #FFD700;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-tin-tuc-cta-section .page-tin-tuc-cta-button:hover {
  background-color: #3A3A4E;
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

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

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #1A1A2E;
  color: #FFD700;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: #3A3A4E;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: #FFD700;
}

.faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: #E94560;
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #FFD700;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #2A2A4E;
  color: #C0C0C0;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 20px 25px;
  border-top: 1px solid #3A3A4E;
}

.faq-answer p {
  margin: 0;
  text-align: left;
  font-size: 1em;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-tin-tuc-hero h1 {
    font-size: 2.8em;
  }
  .page-tin-tuc-featured-articles h2, .page-tin-tuc-latest-news h2, .page-tin-tuc-cta-section h2, .page-tin-tuc-faq h2 {
    font-size: 2.2em;
  }
  .page-tin-tuc-news-item img {
    width: 220px;
    height: 160px;
  }
  .page-tin-tuc-news-content h3 {
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .page-tin-tuc-hero {
    padding: 60px 15px;
  }
  .page-tin-tuc-hero h1 {
    font-size: 2.2em;
  }
  .page-tin-tuc-hero p {
    font-size: 1em;
  }
  .page-tin-tuc-featured-articles, .page-tin-tuc-latest-news, .page-tin-tuc-cta-section, .page-tin-tuc-faq {
    margin: 40px auto;
    padding: 30px 15px;
  }
  .page-tin-tuc-featured-articles h2, .page-tin-tuc-latest-news h2, .page-tin-tuc-cta-section h2, .page-tin-tuc-faq h2 {
    font-size: 1.8em;
  }
  .page-tin-tuc-article-grid {
    grid-template-columns: 1fr;
  }
  .page-tin-tuc-article-card img {
    height: 180px;
  }
  .page-tin-tuc-news-item {
    flex-direction: column;
  }
  .page-tin-tuc-news-item img {
    width: 100%;
    height: 200px;
    border-bottom: none;
  }
  .page-tin-tuc-news-content {
    padding: 15px;
  }
  .page-tin-tuc-news-content h3 {
    font-size: 1.1em;
  }
  .page-tin-tuc-pagination-link {
    padding: 8px 14px;
    font-size: 0.9em;
  }
  .faq-question {
    padding: 15px 20px;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-toggle {
    font-size: 1.5em;
  }
  .faq-answer {
    padding: 0 20px;
  }
  .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-tin-tuc-hero h1 {
    font-size: 1.8em;
  }
  .page-tin-tuc-cta-button {
    padding: 12px 25px;
    font-size: 0.95em;
  }
  .page-tin-tuc-featured-articles h2, .page-tin-tuc-latest-news h2, .page-tin-tuc-cta-section h2, .page-tin-tuc-faq h2 {
    font-size: 1.5em;
  }
  .page-tin-tuc-article-card h3 {
    font-size: 1.2em;
  }
  .page-tin-tuc-news-item img {
    height: 160px;
  }
  .page-tin-tuc-news-content h3 {
    font-size: 1em;
  }
  .page-tin-tuc-pagination-link {
    padding: 6px 10px;
    margin: 0 3px;
    font-size: 0.8em;
  }
  .faq-question h3 {
    font-size: 1em;
  }
  .faq-toggle {
    font-size: 1.3em;
  }
}