.page-news__hero-section {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

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

.page-news__hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
  color: #ffffff;
}

.page-news__hero-description {
  font-size: 1.25rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  color: #f0f8ff;
}

.page-news__btn-primary {
  display: inline-block;
  background-color: #ffc107;
  color: #000000;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-news__btn-primary:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
}

.page-news__latest-news-section, .page-news__guides-section, .page-news__faq-section {
  background-color: #000000;
  color: #ffffff;
  padding: 60px 0;
}

.page-news__promotions-section, .page-news__cta-section {
  background-color: #0d0d0d; /* Slightly different dark background */
  color: #ffffff;
  padding: 60px 0;
}

.page-news__section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 20px;
  color: #ffc107;
  font-weight: 700;
}

.page-news__section-description {
  font-size: 1.1rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  line-height: 1.6;
  color: #f0f8ff;
}

.page-news__news-grid, .page-news__promotion-grid, .page-news__guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-news__news-card, .page-news__promotion-card, .page-news__guide-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-news__news-card:hover, .page-news__promotion-card:hover, .page-news__guide-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.page-news__card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

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

.page-news__card-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  line-height: 1.4;
  color: #ffc107;
}

.page-news__card-title a {
  color: #ffc107;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-news__card-title a:hover {
  color: #ffffff;
}

.page-news__card-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #e0e0e0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-news__btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: #ffc107;
  border: 2px solid #ffc107;
  padding: 10px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
  align-self: flex-start;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-news__btn-secondary:hover {
  background-color: #ffc107;
  color: #000000;
}

.page-news__cta-section {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #007bff, #ffc107);
}

.page-news__cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-news__cta-title {
  font-size: 2.8rem;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-news__cta-description {
  font-size: 1.2rem;
  color: #f0f8ff;
  margin-bottom: 40px;
  line-height: 1.6;
}

.page-news__faq-list {
  margin-top: 40px;
}

.page-news__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-news__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.15);
  transition: background-color 0.3s ease;
}

.page-news__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.page-news__faq-heading {
  font-size: 1.25rem;
  color: #ffffff;
  margin: 0;
  flex-grow: 1;
}

.page-news__faq-toggle {
  font-size: 1.8rem;
  font-weight: 300;
  color: #ffc107;
  margin-left: 20px;
  transition: transform 0.3s ease;
}

.page-news__faq-item.active .page-news__faq-toggle {
  transform: rotate(45deg);
}

.page-news__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.page-news__faq-item.active .page-news__faq-answer {
  max-height: 1000px !important;
  padding: 15px 25px 25px 25px;
}

.page-news__faq-answer p {
  font-size: 1rem;
  line-height: 1.7;
  color: #e0e0e0;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-news__hero-title {
    font-size: 3rem;
  }
  .page-news__section-title {
    font-size: 2.2rem;
  }
  .page-news__cta-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .page-news__hero-section {
    padding: 60px 15px;
    min-height: 350px;
  }
  .page-news__hero-title {
    font-size: 2.5rem;
  }
  .page-news__hero-description {
    font-size: 1.1rem;
  }
  .page-news__section-title {
    font-size: 2rem;
  }
  .page-news__section-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  .page-news__news-grid, .page-news__promotion-grid, .page-news__guides-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-news__card-title {
    font-size: 1.3rem;
  }
  .page-news__card-text {
    font-size: 0.95rem;
  }
  .page-news__cta-section {
    padding: 60px 15px;
  }
  .page-news__cta-title {
    font-size: 2rem;
  }
  .page-news__cta-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  .page-news__faq-question {
    padding: 18px 20px;
  }
  .page-news__faq-heading {
    font-size: 1.1rem;
  }
  .page-news__faq-toggle {
    font-size: 1.5rem;
  }
  .page-news__faq-answer {
    padding: 0 20px;
  }
  .page-news__faq-item.active .page-news__faq-answer {
    padding: 15px 20px 20px 20px;
  }

  /* Mobile responsive for images, videos, and buttons */
  .page-news img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-news__hero-section,
  .page-news__latest-news-section,
  .page-news__promotions-section,
  .page-news__guides-section,
  .page-news__cta-section,
  .page-news__faq-section,
  .page-news__container,
  .page-news__news-card,
  .page-news__promotion-card,
  .page-news__guide-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no horizontal scroll */
  }
  .page-news__btn-primary,
  .page-news__btn-secondary,
  .page-news a[class*="button"],
  .page-news a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-news__cta-content {
    padding-left: 0;
    padding-right: 0;
  }
  .page-news__cta-content .page-news__btn-primary {
    padding-left: 40px;
    padding-right: 40px;
  }
  .page-news__button-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .page-news__hero-title {
    font-size: 2rem;
  }
  .page-news__hero-description {
    font-size: 1rem;
  }
  .page-news__btn-primary {
    padding: 12px 30px;
    font-size: 1rem;
  }
  .page-news__section-title {
    font-size: 1.8rem;
  }
  .page-news__cta-title {
    font-size: 1.8rem;
  }
  .page-news__cta-description {
    font-size: 1rem;
  }
  .page-news__faq-heading {
    font-size: 1rem;
  }
}