.page-news {
  padding-top: 10px; /* Small top padding for the first section */
  background-color: #F4F7FB;
  color: #1F2D3D;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.page-news__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1390px;
  margin: 0 auto 40px auto;
  padding: 0 12px;
  text-align: center;
}

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

.page-news__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  object-position: center;
  min-width: 200px;
  min-height: 200px;
}

.page-news__hero-content {
  max-width: 800px;
}

.page-news__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #000000;
  margin-bottom: 15px;
  font-size: clamp(1.8rem, 4.5vw, 2.8rem); /* Adjusted for news page H1 */
}

.page-news__description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #1F2D3D;
}

.page-news__cta-button {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
  min-width: 200px; /* Ensure button is not too small */
  min-height: 48px; /* Ensure button is not too small */
  line-height: 24px;
  text-align: center;
}

.page-news__cta-button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.page-news__section-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  color: #000000;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}

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

.page-news__latest-articles {
  max-width: 1390px;
  margin: 40px auto;
  padding: 0 12px;
}

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

.page-news__article-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-news__article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-news__article-image {
  width: 100%;
  height: 225px; /* Fixed height for consistent card appearance */
  object-fit: cover;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

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

.page-news__article-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
}

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

.page-news__article-title a:hover {
  color: #2F6BFF;
}

.page-news__article-meta {
  font-size: 0.9rem;
  color: #6FA3FF;
  margin-bottom: 15px;
}

.page-news__article-excerpt {
  font-size: 1rem;
  line-height: 1.6;
  color: #1F2D3D;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-news__read-more-button {
  display: inline-block;
  padding: 8px 20px;
  background-color: #2F6BFF;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

.page-news__read-more-button:hover {
  background-color: #6FA3FF;
}

.page-news__view-all-wrapper {
  text-align: center;
}

.page-news__view-all-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: #D6E2FF;
  color: #2F6BFF;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-news__view-all-button:hover {
  background-color: #A5C4FF;
  transform: translateY(-2px);
}

.page-news__faq-section {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 12px;
}

.page-news__faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-news__faq-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.page-news__faq-question {
  font-size: 1.2rem;
  color: #000000;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-news__faq-answer {
  font-size: 1rem;
  color: #1F2D3D;
  line-height: 1.6;
}

.page-news__cta-section {
  background-color: #2F6BFF;
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
  margin-top: 40px;
}

.page-news__cta-section .page-news__section-title {
  color: #FFFFFF;
}

.page-news__cta-section .page-news__section-title::after {
  background-color: #FFFFFF;
}

.page-news__cta-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-news__cta-button--large {
  padding: 15px 40px;
  font-size: 1.1rem;
}

/* Responsive adjustments */
@media (max-width: 849px) {
  .page-news__hero-image {
    width: 100%;
    height: auto;
  }

  .page-news__main-title {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }

  .page-news__description {
    font-size: 1rem;
  }

  .page-news__articles-grid {
    grid-template-columns: 1fr;
  }

  .page-news__article-image {
    height: 180px;
  }

  .page-news__article-title {
    font-size: 1.15rem;
  }

  .page-news__faq-question {
    font-size: 1.1rem;
  }

  .page-news__cta-section {
    padding: 40px 15px;
  }
}

@media (max-width: 768px) {
  .page-news img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 549px) {
  .page-news {
    padding-left: 12px;
    padding-right: 12px;
  }

  .page-news__hero-section {
    padding: 0;
  }

  .page-news__main-title {
    font-size: clamp(1.3rem, 7vw, 2.2rem);
  }

  .page-news__description {
    font-size: 0.95rem;
  }

  .page-news__cta-button {
    padding: 10px 25px;
    font-size: 0.95rem;
  }

  .page-news__section-title {
    font-size: clamp(1.3rem, 6vw, 1.8rem);
  }

  .page-news__article-image {
    height: 160px;
  }

  .page-news__article-title {
    font-size: 1rem;
  }

  .page-news__article-meta,
  .page-news__article-excerpt {
    font-size: 0.9rem;
  }

  .page-news__read-more-button {
    padding: 6px 15px;
    font-size: 0.9rem;
  }

  .page-news__view-all-button {
    padding: 10px 25px;
    font-size: 0.95rem;
  }

  .page-news__faq-question {
    font-size: 1rem;
  }

  .page-news__faq-answer {
    font-size: 0.9rem;
  }

  .page-news__cta-description {
    font-size: 1rem;
  }

  .page-news__cta-button--large {
    padding: 12px 30px;
    font-size: 1rem;
  }
}