.page-news {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F3F8FF; /* Text Main for dark body background */
  background-color: var(--color-deep-navy); /* Ensure body background is dark */
}

.page-news__section {
  padding: 60px 0;
  background-color: var(--color-deep-navy);
}

.page-news__section:nth-of-type(even) {
  background-color: #08162B; /* Slightly different dark background for contrast */
}

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

.page-news__section-title {
  font-size: 38px;
  font-weight: 700;
  color: #F2C14E; /* Gold for titles */
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-news__section-description {
  font-size: 18px;
  color: #AFC4E8; /* Text Secondary */
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* HERO Section */
.page-news__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #08162B; /* Deep Navy */
}

.page-news__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-news__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-news__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-news__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 20px;
}

.page-news__hero-content h1 {
  font-size: clamp(28px, 4vw, 48px); /* Responsive font size */
  font-weight: 900;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-news__hero-content p {
  font-size: 18px;
  color: #AFC4E8;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-news__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-news__cta-button:hover {
  background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-news__small-button {
  padding: 10px 25px;
  font-size: 16px;
}

/* Latest Articles Grid */
.page-news__latest-articles {
  padding-top: 80px;
  padding-bottom: 80px;
}

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

.page-news__news-card {
  background: #10233F; /* Card B G */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #244D84; /* Border */
}

.page-news__news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-news__card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

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

.page-news__card-content {
  padding: 25px;
}

.page-news__card-title {
  font-size: 22px;
  font-weight: 700;
  color: #F3F8FF;
  margin-bottom: 10px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.page-news__news-card:hover .page-news__card-title {
  color: #F2C14E; /* Gold on hover */
}

.page-news__card-excerpt {
  font-size: 16px;
  color: #AFC4E8;
  margin-bottom: 15px;
  min-height: 75px; /* Ensure consistent card height */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.page-news__card-date {
  font-size: 14px;
  color: #1D5FD1;
  display: block;
}

.page-news__view-all-button-wrapper {
  text-align: center;
  margin-top: 60px;
}

/* Promotion Highlight Section */
.page-news__promotion-highlight {
  background-color: #08162B;
  padding-top: 80px;
  padding-bottom: 80px;
}

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

.page-news__promotion-card {
  background: #10233F; /* Card B G */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #244D84;
  padding-bottom: 25px;
  text-align: center;
}

.page-news__promotion-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.page-news__promotion-card-title {
  font-size: 24px;
  font-weight: 700;
  color: #F3F8FF;
  margin-bottom: 10px;
  padding: 0 20px;
}

.page-news__promotion-card-description {
  font-size: 16px;
  color: #AFC4E8;
  margin-bottom: 20px;
  padding: 0 20px;
}

/* FAQ Section */
.page-news__faq-section {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #08162B;
}

.page-news__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

details.page-news__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #244D84; /* Border */
  overflow: hidden;
  background: #10233F; /* Card B G */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

details.page-news__faq-item summary.page-news__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  color: #F3F8FF;
}

details.page-news__faq-item summary.page-news__faq-question::-webkit-details-marker {
  display: none;
}

details.page-news__faq-item summary.page-news__faq-question:hover {
  background-color: #113B7A; /* Primary color on hover */
  color: #F2C14E;
}

.page-news__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: inherit;
}

.page-news__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #F2C14E; /* Gold */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
  transition: transform 0.3s ease;
}

details.page-news__faq-item[open] .page-news__faq-toggle {
  transform: rotate(45deg);
}

details.page-news__faq-item .page-news__faq-answer {
  padding: 0 25px 20px;
  background: #08162B; /* Deep Navy */
  border-radius: 0 0 8px 8px;
  color: #AFC4E8;
  font-size: 16px;
}

.page-news__faq-answer p {
  margin: 0;
  padding-top: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-news__section-title {
    font-size: 32px;
  }
  .page-news__section-description {
    font-size: 16px;
  }
  .page-news__hero-content h1 {
    font-size: clamp(24px, 5vw, 40px);
  }
  .page-news__hero-content p {
    font-size: 16px;
  }
  .page-news__news-card img {
    
  }
  .page-news__card-title {
    font-size: 20px;
  }
  .page-news__card-excerpt {
    font-size: 15px;
  }
  .page-news__promotion-card-title {
    font-size: 22px;
  }
  .page-news__promotion-card-description {
    font-size: 15px;
  }
  .page-news__faq-qtext {
    font-size: 16px;
  }
  .page-news__faq-toggle {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .page-news__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-news__hero-content h1 {
    font-size: clamp(22px, 6vw, 36px);
  }
  .page-news__hero-content p {
    font-size: 15px;
  }
  .page-news__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-news__section {
    padding: 40px 0;
  }
  .page-news__container {
    padding: 0 15px;
  }
  .page-news__section-title {
    font-size: 28px;
  }
  .page-news__section-description {
    font-size: 14px;
  }
  .page-news__articles-grid, .page-news__promotion-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-news__news-card img {
    
  }
  .page-news__card-title {
    font-size: 18px;
  }
  .page-news__card-excerpt {
    min-height: auto;
    font-size: 14px;
  }
  .page-news__card-content {
    padding: 20px;
  }
  .page-news__view-all-button-wrapper {
    margin-top: 40px;
  }
  .page-news__promotion-card-title {
    font-size: 20px;
  }
  .page-news__promotion-card-description {
    font-size: 14px;
  }
  details.page-news__faq-item summary.page-news__faq-question {
    padding: 15px 20px;
  }
  .page-news__faq-qtext {
    font-size: 15px;
  }
  .page-news__faq-toggle {
    font-size: 18px;
  }
  .page-news__faq-answer {
    padding: 0 20px 15px;
    font-size: 14px;
  }
  /* Mobile image responsiveness */
  .page-news img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-news__section,
  .page-news__card,
  .page-news__container,
  .page-news__articles-grid,
  .page-news__promotion-cards {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-news__promotion-card .page-news__cta-button {
    max-width: calc(100% - 40px) !important; /* Account for card padding */
    width: calc(100% - 40px) !important;
    margin-left: 20px;
    margin-right: 20px;
  }
}