.page-index {
  padding-top: 10px;
  background-color: #F4F7FB;
  color: #1F2D3D;
}

.page-index__hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 40px;
}

.page-index__slider-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.page-index__slider-image {
  width: 100%;
  height: auto;
  flex-shrink: 0;
  object-fit: cover;
  min-height: 200px;
}

.page-index__slider-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-index__slider-arrow {
  background-color: rgba(47, 107, 255, 0.7);
  border: none;
  color: #FFFFFF;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  transition: background-color 0.3s ease;
}

.page-index__slider-arrow:hover {
  background-color: #2F6BFF;
}

.page-index__slider-arrow--prev::before {
  content: '‹';
}

.page-index__slider-arrow--next::before {
  content: '›';
}

.page-index__slider-dots {
  display: flex;
  gap: 8px;
}

.page-index__slider-dot {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-index__slider-dot.page-index__slider-dot--active {
  background-color: #2F6BFF;
  transform: scale(1.2);
}

.page-index__section-title-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px auto;
  max-width: 1200px;
  padding: 0 15px;
}

.page-index__title-line {
  flex-grow: 1;
  height: 2px;
  background: linear-gradient(to right, transparent, #D6E2FF, transparent);
  margin: 0 20px;
}

.page-index__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1F2D3D;
  text-align: center;
  max-width: 600px;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

.page-index__category-gateway {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 15px;
}

.page-index__grid-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-content: center;
}

.page-index__category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  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;
  min-height: 200px;
}

.page-index__category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-index__category-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  min-height: 200px;
}

.page-index__category-label {
  color: #1F2D3D;
  font-weight: 600;
  font-size: 1.1em;
  padding: 15px 10px;
  text-align: center;
}

.page-index__article-body {
  max-width: 800px;
  margin: 80px auto;
  padding: 0 15px;
  line-height: 1.8;
  font-size: 1.05em;
}

.page-index__blockquote {
  border-left: 5px solid #2F6BFF;
  padding-left: 20px;
  margin: 30px 0;
  font-style: italic;
  color: #1F2D3D;
  background-color: #E6F0FF;
  padding: 20px;
  border-radius: 8px;
}

.page-index__blockquote a {
  color: #2F6BFF;
  text-decoration: none;
  font-weight: 600;
}

.page-index__blockquote a:hover {
  text-decoration: underline;
}

.page-index__section-heading {
  font-size: 2.2em;
  font-weight: 700;
  color: #000000;
  margin-top: 60px;
  margin-bottom: 25px;
  line-height: 1.3;
}

.page-index__sub-heading {
  font-size: 1.5em;
  font-weight: 600;
  color: #1F2D3D;
  margin-top: 40px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.page-index__article-body p {
  margin-bottom: 1em;
  color: #1F2D3D;
}

.page-index__article-body ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 1em;
  color: #1F2D3D;
}

.page-index__article-body ul li {
  margin-bottom: 0.5em;
}

.page-index__article-figure {
  margin: 40px 0;
  text-align: center;
}

.page-index__article-figure img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-index__article-figure figcaption {
  margin-top: 15px;
  font-size: 0.9em;
  color: #6FA3FF;
}

.page-index__action-link {
  color: #2F6BFF;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-index__action-link:hover {
  color: #6FA3FF;
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-index__hero-slider {
    margin-bottom: 20px;
  }

  .page-index__main-title {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
    max-width: 90%;
  }

  .page-index__section-title-container {
    margin: 20px auto;
  }

  .page-index__grid-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
  }

  .page-index__category-card img {
    
    min-
  }

  .page-index__category-label {
    font-size: 1em;
    padding: 10px 5px;
  }

  .page-index__article-body {
    margin: 40px auto;
    font-size: 1em;
    line-height: 1.6;
  }

  .page-index__section-heading {
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 20px;
  }

  .page-index__sub-heading {
    font-size: 1.3em;
    margin-top: 30px;
    margin-bottom: 10px;
  }

  /* Ensure images in content areas are responsive */
  .page-index img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-index__grid-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-index__title-line {
    margin: 0 10px;
  }

  .page-index__slider-arrow {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
}