.page-news {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #1F2D3D; /* Text Main */
  background-color: #F4F7FB; /* Background */
}

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

.page-news__section-spacing {
  padding: 60px 0;
}

.page-news__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 10px; /* Small top padding, relies on body padding-top from shared.css */
  padding-bottom: 40px;
  text-align: center;
  background-color: #F4F7FB; /* Background */
}

.page-news__hero-image-wrapper {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

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

.page-news__hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-news__main-title {
  font-size: clamp(2em, 4vw, 3.2em);
  font-weight: 700;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-news__hero-description {
  font-size: 1.1em;
  color: #1F2D3D;
  margin-bottom: 30px;
}

.page-news__hero-button {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-news__hero-button:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
}

.page-news__section-title {
  font-size: 2.5em;
  color: #1F2D3D; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

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

.page-news__news-card {
  background-color: #FFFFFF; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

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

.page-news__card-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__card-title {
  font-size: 1.4em;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 10px;
  line-height: 1.3;
  flex-grow: 1;
}

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

.page-news__card-description {
  font-size: 1em;
  color: #333;
  margin-bottom: 20px;
}

.page-news__read-more {
  color: #2F6BFF; /* Primary Color */
  font-weight: 600;
  text-decoration: none;
  align-self: flex-start;
}

.page-news__read-more:hover {
  text-decoration: underline;
}

.page-news__button-group {
  text-align: center;
}

.page-news__btn-primary {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-news__btn-primary:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
}

.page-news__categories-section {
  background-color: #2F6BFF; /* Primary Color */
  color: #ffffff;
}

.page-news__categories-section .page-news__section-title {
  color: #ffffff;
}

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

.page-news__category-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 25px 15px;
  text-decoration: none;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-news__category-card:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.page-news__category-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 15px;
}

.page-news__category-title {
  font-size: 1.2em;
  font-weight: 600;
  color: #ffffff;
}

.page-news__about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-news__about-content p {
  margin-bottom: 20px;
  color: #1F2D3D; /* Text Main */
}

.page-news__about-image-wrapper {
  text-align: center;
}

.page-news__about-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-news__btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  background-color: #ffffff;
  color: #2F6BFF; /* Primary Color */
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid #2F6BFF; /* Border */
  cursor: pointer;
}

.page-news__btn-secondary:hover {
  background-color: #F4F7FB; /* Background */
  color: #2F6BFF;
}

.page-news__cta-section {
  background-color: #2F6BFF; /* Primary Color */
  color: #ffffff;
  text-align: center;
}

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

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

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

.page-news__faq-section {
  background-color: #F4F7FB; /* Background */
}

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

.page-news__faq-item {
  background-color: #FFFFFF; /* Card BG */
  border: 1px solid #D6E2FF; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  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: #1F2D3D; /* Text Main */
  cursor: pointer;
  list-style: none;
}

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

.page-news__faq-qtext {
  flex-grow: 1;
}

.page-news__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #2F6BFF;
}

.page-news__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  color: #333;
}

details[open] .page-news__faq-toggle {
  content: '−';
}

/* Mobile responsive styles */
@media (max-width: 1024px) {
  .page-news__hero-image-wrapper {
    max-height: 400px;
  }

  .page-news__main-title {
    font-size: clamp(2em, 5vw, 2.8em);
  }

  .page-news__section-title {
    font-size: 2em;
  }

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

  .page-news__about-image-wrapper {
    order: -1; /* Image above text on smaller screens */
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .page-news__container {
    padding: 0 15px !important;
  }

  .page-news__section-spacing {
    padding: 40px 0 !important;
  }

  .page-news__hero-section {
    padding-top: 10px !important;
    padding-bottom: 30px !important;
  }

  .page-news__hero-image-wrapper {
    max-height: 250px !important;
    margin-bottom: 20px !important;
  }

  .page-news__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-news__main-title {
    font-size: 2em !important;
    margin-bottom: 10px !important;
  }

  .page-news__hero-description {
    font-size: 1em !important;
    margin-bottom: 20px !important;
  }

  .page-news__hero-button {
    padding: 10px 25px !important;
    font-size: 0.9em !important;
  }

  .page-news__section-title {
    font-size: 1.8em !important;
    margin-bottom: 30px !important;
  }

  .page-news__news-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .page-news__news-card {
    max-width: 100% !important;
    width: 100% !important;
  }

  .page-news__card-image {
    max-width: 100% !important;
    width: 100% !important;
    height: 180px !important;
  }

  .page-news__card-content {
    padding: 15px !important;
  }

  .page-news__card-title {
    font-size: 1.2em !important;
  }

  .page-news__card-description {
    font-size: 0.9em !important;
  }

  .page-news__btn-primary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 10px 15px !important;
    font-size: 0.9em !important;
  }

  .page-news__button-group {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px !important;
  }

  .page-news__categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)) !important;
    gap: 15px !important;
  }

  .page-news__category-card {
    padding: 20px 10px !important;
  }

  .page-news__category-icon {
    width: 50px !important;
    height: 50px !important;
    margin-bottom: 10px !important;
  }

  .page-news__category-title {
    font-size: 1em !important;
  }

  .page-news__about-grid {
    grid-template-columns: 1fr !important;
  }

  .page-news__about-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-news__cta-description {
    font-size: 1em !important;
    padding: 0 15px !important;
  }

  .page-news__cta-buttons {
    flex-direction: column !important;
    gap: 15px !important;
    padding: 0 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-news__cta-buttons .page-news__btn-primary,
  .page-news__cta-buttons .page-news__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 10px 15px !important;
    font-size: 0.9em !important;
  }

  .page-news__faq-question {
    padding: 15px 20px !important;
    font-size: 1em !important;
  }

  .page-news__faq-answer {
    padding: 0 20px 15px !important;
    font-size: 0.9em !important;
  }

  .page-news img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-news__section,
  .page-news__card,
  .page-news__container,
  .page-news__hero-section,
  .page-news__latest-news-section,
  .page-news__categories-section,
  .page-news__about-news,
  .page-news__cta-section,
  .page-news__faq-section,
  .page-news__news-grid,
  .page-news__categories-grid,
  .page-news__about-grid {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}