.page-tin-tuc-industry-news {
  --primary-color: #0A192F;
  --secondary-color: #FFD700;
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --background-light: #f4f7f6;
  --background-dark: #0A192F;
  --card-background: #ffffff;
  --border-color: #e0e0e0;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark);
}

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

.page-tin-tuc-industry-news-section {
  padding: 60px 0;
  text-align: center;
}

.page-tin-tuc-industry-news-section:nth-of-type(odd) {
  background-color: var(--background-light);
}

.page-tin-tuc-industry-news-section:nth-of-type(even) {
  background-color: var(--card-background);
}

.page-tin-tuc-industry-news h1,
.page-tin-tuc-industry-news h2 {
  color: var(--primary-color);
  margin-bottom: 25px;
  font-weight: bold;
  line-height: 1.2;
}

.page-tin-tuc-industry-news h1 {
  font-size: 2.8em;
  color: var(--text-color-light);
}

.page-tin-tuc-industry-news h2 {
  font-size: 2.2em;
}

.page-tin-tuc-industry-news h3 {
  color: var(--primary-color);
  font-size: 1.6em;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-tin-tuc-industry-news p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: var(--text-color-dark);
}

.page-tin-tuc-industry-news strong {
  color: var(--primary-color);
}

/* Hero Section */
.page-tin-tuc-industry-news-hero-section {
  position: relative;
  width: 100%;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a3a6b 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-tin-tuc-industry-news-hero-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0.2;
}

.page-tin-tuc-industry-news-hero-content {
  position: relative;
  z-index: 1;
  color: var(--text-color-light);
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.page-tin-tuc-industry-news-hero-content p {
  color: var(--text-color-light);
  font-size: 1.2em;
  margin-bottom: 30px;
}

/* CTA Button */
.page-tin-tuc-industry-news-cta-button {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid var(--secondary-color);
}

.page-tin-tuc-industry-news-cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-tin-tuc-industry-news-secondary-button {
  display: inline-block;
  background-color: transparent;
  color: var(--primary-color);
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid var(--primary-color);
  margin-left: 20px;
}

.page-tin-tuc-industry-news-secondary-button:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-tin-tuc-industry-news-button-group {
  margin-top: 30px;
}

/* Article Grid */
.page-tin-tuc-industry-news-article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-tin-tuc-industry-news-article-card {
  background-color: var(--card-background);
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-tin-tuc-industry-news-article-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid var(--border-color);
}

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

.page-tin-tuc-industry-news-article-content h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.page-tin-tuc-industry-news-article-content p {
  font-size: 0.95em;
  color: #555555;
  line-height: 1.5;
  flex-grow: 1;
}

.page-tin-tuc-industry-news-article-link {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-tin-tuc-industry-news-article-link:hover {
  color: var(--secondary-color);
}

.page-tin-tuc-industry-news-read-more {
  display: inline-block;
  margin-top: 15px;
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: color 0.3s ease;
}

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

/* FAQ Section */
.page-tin-tuc-industry-news-faq-list {
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-tin-tuc-industry-news-faq-list .faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-tin-tuc-industry-news-faq-list .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background-color: var(--card-background);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.page-tin-tuc-industry-news-faq-list .faq-question:hover {
  background-color: #f9f9f9;
  border-color: var(--secondary-color);
}

.page-tin-tuc-industry-news-faq-list .faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: var(--primary-color);
  flex-grow: 1;
  text-align: left;
}

.page-tin-tuc-industry-news-faq-list .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
}

.page-tin-tuc-industry-news-faq-list .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--primary-color);
}

.page-tin-tuc-industry-news-faq-list .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background-color: #fcfcfc;
  text-align: left;
  color: #555555;
}

.page-tin-tuc-industry-news-faq-list .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 20px 25px;
  border: 1px solid var(--border-color);
  border-top: none;
  border-radius: 0 0 8px 8px;
}

.page-tin-tuc-industry-news-faq-list .faq-item.active .faq-question {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-tin-tuc-industry-news h1 {
    font-size: 2.4em;
  }
  .page-tin-tuc-industry-news h2 {
    font-size: 1.8em;
  }
  .page-tin-tuc-industry-news-article-grid {
    grid-template-columns: 1fr;
  }
  .page-tin-tuc-industry-news-button-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-tin-tuc-industry-news-secondary-button {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .page-tin-tuc-industry-news-section {
    padding: 40px 0;
  }
  .page-tin-tuc-industry-news-hero-section {
    padding: 60px 0;
  }
  .page-tin-tuc-industry-news-hero-image {
    height: 300px;
  }
  .page-tin-tuc-industry-news h1 {
    font-size: 2em;
  }
  .page-tin-tuc-industry-news h2 {
    font-size: 1.6em;
  }
  .page-tin-tuc-industry-news h3 {
    font-size: 1.4em;
  }
  .page-tin-tuc-industry-news p {
    font-size: 1em;
  }
  .page-tin-tuc-industry-news-cta-button,
  .page-tin-tuc-industry-news-secondary-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-tin-tuc-industry-news-faq-list .faq-question {
    padding: 15px 20px;
  }
  .page-tin-tuc-industry-news-faq-list .faq-question h3 {
    font-size: 1.1em;
  }
  .page-tin-tuc-industry-news-faq-list .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-tin-tuc-industry-news-container {
    padding: 0 15px;
  }
  .page-tin-tuc-industry-news-hero-section {
    padding: 40px 0;
  }
  .page-tin-tuc-industry-news-hero-image {
    height: 250px;
  }
  .page-tin-tuc-industry-news h1 {
    font-size: 1.8em;
  }
  .page-tin-tuc-industry-news h2 {
    font-size: 1.4em;
  }
  .page-tin-tuc-industry-news h3 {
    font-size: 1.2em;
  }
  .page-tin-tuc-industry-news-cta-button,
  .page-tin-tuc-industry-news-secondary-button {
    width: 100%;
    margin-left: 0;
    margin-bottom: 10px;
  }
  .page-tin-tuc-industry-news-button-group a:last-child {
    margin-bottom: 0;
  }
}