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

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

.page-news .text-center {
  text-align: center;
}

.page-news .section-title {
  color: #FFD700;
  font-size: 38px;
  text-align: center;
  margin-bottom: 25px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-news .section-description {
  font-size: 18px;
  color: #E0E0E0;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-news .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(90deg, #FFD700, #FFA500);
  color: #1A1A2E;
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  border: none;
  cursor: pointer;
}

.page-news .cta-button:hover {
  background: linear-gradient(90deg, #FFA500, #FFD700);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-news .large-button {
  padding: 18px 50px;
  font-size: 22px;
}

/* Hero Banner */
.page-news .hero-banner {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 60px;
}

.page-news .hero-banner .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.page-news .hero-banner .hero-overlay {
  position: relative;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 40px;
  border-radius: 10px;
  max-width: 900px;
}

.page-news .hero-banner .hero-title {
  font-size: 56px;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.page-news .hero-banner .hero-subtitle {
  font-size: 24px;
  color: #E0E0E0;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* News Grid Section */
.page-news .news-grid-section {
  padding: 60px 0;
  background-color: #1A1A2E;
}

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

.page-news .news-card {
  background-color: #2A2A4A;
  border-radius: 12px;
  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 {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

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

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

.page-news .news-card .card-title {
  font-size: 24px;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: bold;
  line-height: 1.3;
}

.page-news .news-card .card-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-news .news-card .card-title a:hover {
  color: #FFA500;
}

.page-news .news-card .card-date {
  font-size: 14px;
  color: #A0A0A0;
  margin-bottom: 15px;
}

.page-news .news-card .card-excerpt {
  font-size: 16px;
  color: #E0E0E0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-news .news-card .read-more-link {
  display: inline-block;
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  align-self: flex-start;
}

.page-news .news-card .read-more-link:hover {
  color: #FFA500;
  text-decoration: underline;
}

/* Latest News Section (List) */
.page-news .latest-news-section {
  padding: 60px 0;
  background-color: #1A1A2E;
}

.page-news .news-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.page-news .news-item-list {
  background-color: #2A2A4A;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: flex-start;
  padding: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-news .news-item-list:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}

.page-news .news-item-list .list-image {
  width: 250px;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 25px;
  flex-shrink: 0;
}

.page-news .news-item-list .item-content {
  flex-grow: 1;
}

.page-news .news-item-list .item-title {
  font-size: 26px;
  color: #FFD700;
  margin-bottom: 8px;
  font-weight: bold;
  line-height: 1.3;
}

.page-news .news-item-list .item-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-news .news-item-list .item-title a:hover {
  color: #FFA500;
}

.page-news .news-item-list .item-date {
  font-size: 15px;
  color: #A0A0A0;
  margin-bottom: 12px;
}

.page-news .news-item-list .item-excerpt {
  font-size: 17px;
  color: #E0E0E0;
  margin-bottom: 15px;
}

.page-news .news-item-list .read-more-link {
  display: inline-block;
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-news .news-item-list .read-more-link:hover {
  color: #FFA500;
  text-decoration: underline;
}

.page-news .pagination {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  gap: 10px;
}

.page-news .page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: #2A2A4A;
  color: #FFD700;
  text-decoration: none;
  border-radius: 50%;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 1px solid #FFD700;
}

.page-news .page-link:hover, .page-news .page-link.active {
  background-color: #FFD700;
  color: #1A1A2E;
  border-color: #FFD700;
}

/* Promotion CTA */
.page-news .promotion-cta {
  padding: 80px 0;
  background-color: #1A1A2E;
  border-top: 1px solid #3A3A5A;
  border-bottom: 1px solid #3A3A5A;
}

.page-news .promotion-cta .section-description {
  margin-bottom: 40px;
}

/* FAQ Section */
.page-news .faq-section {
  padding: 60px 0;
  background-color: #1A1A2E;
}

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

.page-news .faq-item {
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-news .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: #2A2A4A;
  color: #FFD700;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border-bottom: 1px solid #3A3A5A;
}

.page-news .faq-question:hover {
  background-color: #3A3A5A;
}

.page-news .faq-question h3 {
  margin: 0;
  color: #FFD700;
  font-size: 20px;
}

.page-news .faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
  line-height: 1;
}

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

.page-news .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background-color: #3A3A5A;
}

.page-news .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed */
  padding: 25px;
  border-top: none;
}

.page-news .faq-answer p {
  margin: 0;
  color: #E0E0E0;
  font-size: 17px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-news .hero-banner {
    height: 400px;
  }
  .page-news .hero-banner .hero-overlay {
    padding: 30px;
  }
  .page-news .hero-banner .hero-title {
    font-size: 44px;
  }
  .page-news .hero-banner .hero-subtitle {
    font-size: 20px;
  }
  .page-news .news-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-news .news-item-list {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-news .news-item-list .list-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .page-news .news-item-list .item-content {
    width: 100%;
  }
  .page-news .news-item-list .read-more-link {
    align-self: center;
  }
}

@media (max-width: 768px) {
  .page-news .section-title {
    font-size: 32px;
  }
  .page-news .section-description {
    font-size: 16px;
  }
  .page-news .cta-button {
    padding: 12px 30px;
    font-size: 18px;
  }
  .page-news .large-button {
    padding: 15px 40px;
    font-size: 20px;
  }
  .page-news .hero-banner {
    height: 350px;
  }
  .page-news .hero-banner .hero-overlay {
    padding: 20px;
  }
  .page-news .hero-banner .hero-title {
    font-size: 36px;
  }
  .page-news .hero-banner .hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .page-news .news-card .card-title {
    font-size: 20px;
  }
  .page-news .news-card .card-excerpt {
    font-size: 15px;
  }
  .page-news .news-item-list {
    padding: 20px;
  }
  .page-news .news-item-list .item-title {
    font-size: 22px;
  }
  .page-news .news-item-list .item-excerpt {
    font-size: 16px;
  }
  .page-news .faq-question {
    padding: 15px 20px;
    font-size: 18px;
  }
  .page-news .faq-question h3 {
    font-size: 18px;
  }
  .page-news .faq-toggle {
    font-size: 24px;
  }
  .page-news .faq-answer p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .page-news .hero-banner {
    height: 300px;
  }
  .page-news .hero-banner .hero-title {
    font-size: 28px;
  }
  .page-news .hero-banner .hero-subtitle {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .page-news .news-card {
    margin-bottom: 20px;
  }
  .page-news .news-item-list {
    padding: 15px;
  }
  .page-news .news-item-list .item-title {
    font-size: 20px;
  }
  .page-news .news-item-list .item-excerpt {
    font-size: 14px;
  }
  .page-news .pagination .page-link {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}