.page-news__hero-section {
  padding-top: 10px;
  background: linear-gradient(135deg, #26A9E0 0%, #1A7BBF 100%);
  color: #FFFFFF;
  text-align: center;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.page-news__hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-news__hero-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

.page-news__text-area {
  max-width: 900px;
}

.page-news__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.page-news__description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #f0f8ff;
}

.page-news__description--white {
  color: #f0f8ff;
}

.page-news__btn-primary {
  display: inline-block;
  background: #EA7C07;
  color: #FFFFFF;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-news__latest-articles,
.page-news__why-choose,
.page-news__faq-section {
  padding: 60px 0;
  background: #FFFFFF;
  color: #333333;
}

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

.page-news__section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

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

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

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

.page-news__article-card {
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  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 8px 25px rgba(0, 0, 0, 0.15);
}

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

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

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

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

.page-news__article-title a:hover {
  color: #1A7BBF;
}

.page-news__article-meta {
  font-size: 0.9em;
  color: #777;
  margin-bottom: 15px;
}

.page-news__article-summary {
  font-size: 1em;
  color: #555;
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-news__btn-secondary {
  display: inline-block;
  background: #26A9E0;
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  text-align: center;
  align-self: flex-start;
}

.page-news__btn-secondary:hover {
  background-color: #1A7BBF;
  transform: translateY(-1px);
}

.page-news__btn-secondary--white {
  background: #FFFFFF;
  color: #26A9E0;
  border: 1px solid #26A9E0;
}

.page-news__btn-secondary--white:hover {
  background-color: #e0f2f7;
  color: #1A7BBF;
}

.page-news__featured-articles {
  background: linear-gradient(135deg, #26A9E0 0%, #1A7BBF 100%);
  padding: 60px 0;
  color: #FFFFFF;
}

.page-news__card--transparent {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.page-news__card--transparent .page-news__article-title a {
  color: #FFFFFF;
}

.page-news__card--transparent .page-news__article-title a:hover {
  color: #e0f2f7;
}

.page-news__card--transparent .page-news__article-summary {
  color: #f0f8ff;
}

.page-news__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-news__benefit-item {
  background: #f8f8f8;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-news__benefit-item:hover {
  transform: translateY(-5px);
}

.page-news__benefit-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-news__benefit-title {
  font-size: 1.5em;
  font-weight: 600;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-news__benefit-description {
  font-size: 1em;
  color: #555;
  line-height: 1.5;
}

.page-news__faq-section {
  background: #f0f8ff;
  padding: 60px 0;
}

.page-news__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-news__faq-item {
  background: #FFFFFF;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-news__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: 600;
  color: #333333;
  cursor: pointer;
  background-color: #FFFFFF;
  border-bottom: 1px solid #eee;
  list-style: none;
}

.page-news__faq-item[open] .page-news__faq-question {
  border-bottom: none;
}

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

.page-news__faq-question .page-news__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #26A9E0;
  transition: transform 0.3s ease;
}

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

.page-news__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1em;
  color: #555;
  line-height: 1.6;
  background-color: #fcfcfc;
}

.page-news__faq-answer p {
  margin: 0;
}

.page-news__cta-section {
  background: linear-gradient(135deg, #1A7BBF 0%, #26A9E0 100%);
  padding: 80px 0;
  text-align: center;
  color: #FFFFFF;
}

.page-news__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

/* Common image responsive styles */
.page-news img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Common button responsive styles */
.page-news__btn-primary,
.page-news__btn-secondary,
.page-news a[class*="button"],
.page-news a[class*="btn"] {
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-news__cta-buttons,
.page-news__button-group,
.page-news__btn-container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .page-news__main-title {
    font-size: 2.8em;
  }
  .page-news__section-title {
    font-size: 2em;
  }
  .page-news__article-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-news__benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 768px) {
  /* Hero section */
  .page-news__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }
  .page-news__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important; /* Ensure image is not cropped */
    aspect-ratio: unset !important;
    max-height: none !important;
  }
  .page-news__main-title {
    font-size: clamp(2em, 8vw, 2.5em);
    margin-top: 20px;
  }
  .page-news__description {
    font-size: 1em;
  }

  /* General content sections */
  .page-news__latest-articles,
  .page-news__why-choose,
  .page-news__faq-section,
  .page-news__featured-articles,
  .page-news__cta-section {
    padding: 40px 0;
  }
  .page-news__container {
    padding: 0 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-news__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  /* Article grid */
  .page-news__article-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-news__article-image {
    height: 180px;
  }
  .page-news__article-title {
    font-size: 1.2em;
  }
  .page-news__article-summary {
    font-size: 0.95em;
  }

  /* Benefits grid */
  .page-news__benefits-grid {
    grid-template-columns: 1fr;
  }
  .page-news__benefit-icon {
    width: 80px;
    height: 80px;
  }
  .page-news__benefit-title {
    font-size: 1.3em;
  }

  /* FAQ section */
  .page-news__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-news__faq-answer {
    padding: 10px 20px 15px;
  }

  /* CTA buttons */
  .page-news__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .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 !important;
    padding-right: 15px !important;
  }

  /* All images in content area */
  .page-news img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-news__section,
  .page-news__card,
  .page-news__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}