.page-industry-news-trends {
  --primary-color: #1A2B3C;
  --secondary-color: #FFD700;
  --text-light: #F0F0F0;
  --text-dark: #1A2B3C;
  --background-dark: #121E2C;
  --background-light: #2A3B4C;
  font-family: 'Arial', sans-serif;
  color: var(--text-light);
  line-height: 1.6;
}

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

.page-industry-news-trends__hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, #000 100%);
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-industry-news-trends__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.page-industry-news-trends__hero-title {
  font-size: 3.5em;
  color: var(--secondary-color);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-industry-news-trends__hero-subtitle {
  font-size: 1.4em;
  color: var(--text-light);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-industry-news-trends__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  z-index: 1;
}

.page-industry-news-trends__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-industry-news-trends__section {
  padding: 60px 0;
  background-color: var(--background-dark);
}

.page-industry-news-trends__section--overview {
  background-color: var(--background-dark);
}

.page-industry-news-trends__section--vietnam {
  background-color: var(--primary-color);
}

.page-industry-news-trends__section--technology {
  background-color: var(--background-dark);
}

.page-industry-news-trends__section--details {
  background-color: var(--primary-color);
}

.page-industry-news-trends__section-title {
  font-size: 2.8em;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-industry-news-trends__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}

.page-industry-news-trends__subsection-title {
  font-size: 2em;
  color: var(--secondary-color);
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: left;
  border-left: 5px solid var(--secondary-color);
  padding-left: 15px;
}

.page-industry-news-trends__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: var(--text-light);
  text-align: justify;
}

.page-industry-news-trends__image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-industry-news-trends__list {
  list-style-type: disc;
  padding-left: 25px;
  margin-bottom: 30px;
  font-size: 1.1em;
  color: var(--text-light);
}

.page-industry-news-trends__list li {
  margin-bottom: 10px;
}

.page-industry-news-trends__list-highlight {
  color: var(--secondary-color);
}

.page-industry-news-trends__detail-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-industry-news-trends__detail-item {
  background-color: var(--background-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-industry-news-trends__detail-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.page-industry-news-trends__detail-title {
  font-size: 1.8em;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-industry-news-trends__detail-title a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-industry-news-trends__detail-title a:hover {
  color: #FFF;
}

.page-industry-news-trends__detail-description {
  font-size: 1em;
  color: var(--text-light);
  margin-bottom: 25px;
}

.page-industry-news-trends__btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  text-align: center;
}

.page-industry-news-trends__btn--primary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: 2px solid var(--secondary-color);
  margin-top: 20px;
}

.page-industry-news-trends__btn--primary:hover {
  background-color: #FFF;
  color: var(--primary-color);
  transform: translateY(-2px);
}

.page-industry-news-trends__btn--secondary {
  background-color: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-industry-news-trends__btn--secondary:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.page-industry-news-trends__btn--tertiary {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: 2px solid var(--primary-color);
}

.page-industry-news-trends__btn--tertiary:hover {
  background-color: var(--background-light);
  color: var(--secondary-color);
  transform: translateY(-2px);
}

.page-industry-news-trends__cta {
  background-color: var(--background-light);
  padding: 80px 0;
  text-align: center;
}

.page-industry-news-trends__cta-title {
  font-size: 3em;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.page-industry-news-trends__cta-text {
  font-size: 1.2em;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-industry-news-trends__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-industry-news-trends__hero-title {
    font-size: 2.8em;
  }
  .page-industry-news-trends__section-title {
    font-size: 2.2em;
  }
  .page-industry-news-trends__subsection-title {
    font-size: 1.7em;
  }
  .page-industry-news-trends__text, .page-industry-news-trends__list li {
    font-size: 1em;
  }
  .page-industry-news-trends__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-industry-news-trends__hero {
    padding: 60px 0;
  }
  .page-industry-news-trends__hero-title {
    font-size: 2.2em;
  }
  .page-industry-news-trends__hero-subtitle {
    font-size: 1.1em;
  }
  .page-industry-news-trends__section {
    padding: 40px 0;
  }
  .page-industry-news-trends__section-title {
    font-size: 1.8em;
  }
  .page-industry-news-trends__subsection-title {
    font-size: 1.5em;
  }
  .page-industry-news-trends__detail-list {
    grid-template-columns: 1fr;
  }
  .page-industry-news-trends__cta-title {
    font-size: 2em;
  }
  .page-industry-news-trends__cta-text {
    font-size: 1em;
  }
  .page-industry-news-trends__cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .page-industry-news-trends__btn {
    width: 80%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .page-industry-news-trends__hero-title {
    font-size: 1.8em;
  }
  .page-industry-news-trends__hero-subtitle {
    font-size: 0.9em;
  }
  .page-industry-news-trends__section-title {
    font-size: 1.5em;
  }
  .page-industry-news-trends__subsection-title {
    font-size: 1.3em;
  }
  .page-industry-news-trends__detail-title {
    font-size: 1.5em;
  }
  .page-industry-news-trends__cta-title {
    font-size: 1.8em;
  }
}