.page-latest-news {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Màu chữ sáng trên nền tối */
  line-height: 1.6;
  background-color: #1A2035; /* Nền tối chủ đạo */
}

.page-latest-news__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-latest-news__hero {
  background: linear-gradient(135deg, #1A2035 0%, #3a486b 100%); /* Nền gradient từ màu chủ đạo */
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF;
  border-bottom: 2px solid #FFD700; /* Đường viền vàng */
}

.page-latest-news__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Tiêu đề màu vàng nổi bật */
  font-weight: bold;
  line-height: 1.2;
}

.page-latest-news__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #E0E0E0;
}

.page-latest-news__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Nút màu vàng */
  color: #1A2035; /* Chữ trên nút màu tối */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-latest-news__hero-button:hover {
  background-color: #e6c200; /* Vàng đậm hơn khi hover */
  transform: translateY(-3px);
}

.page-latest-news__articles-grid, .page-latest-news__industry-updates, .page-latest-news__cta-section, .page-latest-news__more-info, .page-latest-news__faq {
  padding: 60px 0;
}

.page-latest-news__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Tiêu đề phần màu vàng */
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.page-latest-news__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

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

.page-latest-news__article-card {
  background-color: #2A314A; /* Nền thẻ bài tối hơn */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-latest-news__article-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-latest-news__article-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-latest-news__article-content {
  padding: 25px;
}

.page-latest-news__article-title {
  font-size: 1.5em;
  color: #FFD700; /* Tiêu đề bài viết màu vàng */
  margin-bottom: 10px;
  min-height: 60px; /* Đảm bảo chiều cao nhất quán */
}

.page-latest-news__article-date {
  font-size: 0.9em;
  color: #9E9E9E;
  margin-bottom: 15px;
}

.page-latest-news__article-excerpt {
  font-size: 1em;
  color: #E0E0E0;
  margin-bottom: 20px;
}

.page-latest-news__read-more {
  display: inline-block;
  background-color: #FFD700; /* Nút đọc thêm màu vàng */
  color: #1A2035;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
}

.page-latest-news__read-more:hover {
  background-color: #e6c200;
}

.page-latest-news__industry-article {
  display: flex;
  background-color: #2A314A;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  margin-bottom: 40px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-latest-news__industry-article:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-latest-news__industry-image {
  width: 35%;
  height: auto;
  object-fit: cover;
}

.page-latest-news__industry-content {
  padding: 30px;
  width: 65%;
}

.page-latest-news__cta-section {
  background-color: #1A2035;
  text-align: center;
  padding: 80px 0;
  border-top: 2px solid #FFD700;
  border-bottom: 2px solid #FFD700;
}

.page-latest-news__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 25px;
}

.page-latest-news__cta-text {
  font-size: 1.3em;
  color: #E0E0E0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-latest-news__newsletter-form {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.page-latest-news__newsletter-input {
  padding: 15px 20px;
  border: 1px solid #FFD700;
  border-radius: 5px;
  width: 350px;
  font-size: 1em;
  background-color: #2A314A;
  color: #FFFFFF;
}

.page-latest-news__newsletter-input::placeholder {
  color: #9E9E9E;
}

.page-latest-news__newsletter-button {
  background-color: #FFD700;
  color: #1A2035;
  padding: 15px 25px;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-latest-news__newsletter-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-latest-news__cta-note {
  font-size: 1em;
  color: #9E9E9E;
}

.page-latest-news__cta-note a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-latest-news__cta-note a:hover {
  text-decoration: underline;
}

.page-latest-news__info-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-latest-news__info-card {
  background-color: #2A314A;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-latest-news__info-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700); /* Hiệu ứng đổ bóng vàng cho icon */
}

.page-latest-news__info-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-latest-news__info-card p {
  color: #E0E0E0;
  font-size: 0.95em;
}

.page-latest-news__action-buttons {
  text-align: center;
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-latest-news__main-button, .page-latest-news__secondary-button {
  display: inline-block;
  padding: 18px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.15em;
  transition: background-color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.page-latest-news__main-button {
  background-color: #FFD700;
  color: #1A2035;
  border: 2px solid #FFD700;
}

.page-latest-news__main-button:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-3px);
}

.page-latest-news__secondary-button {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-latest-news__secondary-button:hover {
  background-color: #FFD700;
  color: #1A2035;
  transform: translateY(-3px);
}

.page-latest-news__faq-item {
  background-color: #2A314A;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-latest-news__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-latest-news__faq-answer {
  font-size: 1em;
  color: #E0E0E0;
}

.page-latest-news__faq-answer a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-latest-news__faq-answer a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-latest-news__hero-title {
    font-size: 2.8em;
  }
  .page-latest-news__hero-subtitle {
    font-size: 1.2em;
  }
  .page-latest-news__section-title {
    font-size: 2em;
  }
  .page-latest-news__industry-article {
    flex-direction: column;
  }
  .page-latest-news__industry-image,
  .page-latest-news__industry-content {
    width: 100%;
  }
  .page-latest-news__industry-image {
    height: 250px;
  }
  .page-latest-news__newsletter-form {
    flex-direction: column;
    align-items: center;
  }
  .page-latest-news__newsletter-input {
    width: 80%;
  }
  .page-latest-news__main-button, .page-latest-news__secondary-button {
    padding: 15px 25px;
    font-size: 1em;
  }
  .page-latest-news__action-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .page-latest-news__hero {
    padding: 80px 0;
  }
  .page-latest-news__hero-title {
    font-size: 2.2em;
  }
  .page-latest-news__hero-subtitle {
    font-size: 1em;
  }
  .page-latest-news__articles-grid, .page-latest-news__industry-updates, .page-latest-news__cta-section, .page-latest-news__more-info, .page-latest-news__faq {
    padding: 40px 0;
  }
  .page-latest-news__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-latest-news__grid {
    grid-template-columns: 1fr;
  }
  .page-latest-news__article-content {
    padding: 20px;
  }
  .page-latest-news__article-title {
    font-size: 1.3em;
  }
  .page-latest-news__cta-title {
    font-size: 2em;
  }
  .page-latest-news__cta-text {
    font-size: 1.1em;
  }
  .page-latest-news__newsletter-input {
    width: 90%;
  }
  .page-latest-news__info-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-latest-news__hero-title {
    font-size: 1.8em;
  }
  .page-latest-news__hero-subtitle {
    font-size: 0.9em;
  }
  .page-latest-news__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-latest-news__section-title {
    font-size: 1.5em;
  }
  .page-latest-news__cta-title {
    font-size: 1.8em;
  }
  .page-latest-news__cta-text {
    font-size: 0.9em;
  }
  .page-latest-news__newsletter-input {
    padding: 12px 15px;
  }
  .page-latest-news__newsletter-button {
    padding: 12px 20px;
    font-size: 0.9em;
  }
  .page-latest-news__main-button, .page-latest-news__secondary-button {
    padding: 12px 20px;
    font-size: 0.9em;
  }
  .page-latest-news__faq-question {
    font-size: 1.2em;
  }
}