.page-index {
  padding-top: 10px; /* Small top padding to avoid content touching header, body handles main offset */
  background-color: #F4F7FB; /* Default background */
  color: #1F2D3D; /* Default text color */
}

.page-index__container {
  max-width: 1390px;
  margin: 0 auto;
  padding: 20px;
}

/* Hero Slider Section */
.page-index__hero-slider-section {
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
  background-color: #0a0909; /* Dark background for slider area, coordinating with main blue */
}

.page-index__hero-slider-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 300%; /* For 3 slides */
}

.page-index__hero-slider-item {
  min-width: 33.33%; /* Each item takes 1/3 of the container width */
  width: 100%;
  flex-shrink: 0;
}

.page-index__hero-slider-item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.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: rgba(47, 107, 255, 0.7); /* Main color with transparency */
  border: none;
  color: #FFFFFF;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 1.2em;
  transition: background-color 0.3s ease;
}

.page-index__slider-arrow:hover {
  background: rgba(74, 139, 255, 0.9);
}

.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;
}

.page-index__slider-dot.page-index__slider-dot--active {
  background-color: #A5C4FF; /* Glow color */
}

/* Section Title */
.page-index__section-title-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  gap: 20px;
}

.page-index__section-line {
  flex-grow: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #d6d604 50%, transparent 100%); /* Yellow-green accent for decoration */
  max-width: 150px;
}

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

/* Category Gateway */
.page-index__category-gateway {
  margin-bottom: 40px;
}

.page-index__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* Responsive grid */
  gap: 20px;
}

.page-index__category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #FFFFFF; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: #1F2D3D; /* Text Main */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #D6E2FF; /* Border color */
}

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

.page-index__category-card img {
  width: 100%;
  height: 300px; /* Fixed height for vertical aspect ratio */
  object-fit: cover;
  display: block;
  transition: filter 0.3s ease;
}

.page-index__category-card:hover img {
  filter: brightness(1.1);
}

.page-index__category-label {
  padding: 15px 10px;
  font-size: 1.1em;
  font-weight: 600;
  text-align: center;
  width: 100%;
  background-color: #2F6BFF; /* Main color */
  color: #FFFFFF;
}

/* Article Body (Long-form SEO) */
.page-index__article-body {
  background-color: #FFFFFF; /* Card BG */
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  line-height: 1.7;
  color: #1F2D3D; /* Text Main */
}

.page-index__blockquote {
  border-left: 5px solid #ff9900; /* Orange/amber for blockquote, complementing blue */
  padding-left: 20px;
  margin: 30px 0;
  font-style: italic;
  color: #555;
  background-color: #F8F8F8;
  padding: 20px;
  border-radius: 5px;
}

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

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

.page-index__highlight-text {
  color: #ff9900; /* Orange/amber for highlights */
  font-weight: 600;
}

.page-index__section-heading {
  font-size: 2em;
  font-weight: 700;
  color: #1F2D3D;
  margin-top: 40px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.page-index__section-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background-color: #d6d604; /* Yellow-green accent */
}

.page-index__sub-heading {
  font-size: 1.4em;
  font-weight: 600;
  color: #2F6BFF; /* Main color */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-index__article-body p {
  margin-bottom: 15px;
}

.page-index__article-body a {
  color: #2F6BFF;
  text-decoration: none;
}

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

.page-index__article-figure {
  margin: 30px auto;
  max-width: 800px;
}

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

.page-index__article-figure figcaption {
  text-align: center;
  font-size: 0.9em;
  color: #666;
  margin-top: 10px;
}

.page-index__guide-list,
.page-index__promotions-list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-index__guide-list li,
.page-index__promotions-list li {
  margin-bottom: 8px;
}

.page-index__promotions-list li strong {
  color: #000000; /* Custom Color_1776249996415 */
}

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

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

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-index__grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }

  .page-index__category-card img {
    height: 250px;
  }

  .page-index__article-body {
    padding: 30px;
  }

  .page-index__section-heading {
    font-size: 1.8em;
  }

  .page-index__sub-heading {
    font-size: 1.3em;
  }
}

@media (max-width: 768px) {
  .page-index__container {
    padding: 15px;
  }

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

  .page-index__section-line {
    max-width: 80px;
  }

  .page-index__grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
  }

  .page-index__category-card img {
    height: 200px;
  }

  .page-index__article-body {
    padding: 20px;
  }

  .page-index__section-heading {
    font-size: 1.6em;
    margin-top: 30px;
    margin-bottom: 15px;
  }

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

  .page-index__article-body p {
    font-size: 0.95em;
  }

  .page-index__article-figure {
    margin: 20px auto;
  }

  .page-index__hero-slider-item img, .page-index__article-body img, .page-index__category-card img {
    max-width: 100%;
    height: auto;
  }

  .page-index__hero-slider-nav {
    bottom: 10px;
  }

  .page-index__slider-arrow {
    padding: 8px 12px;
    font-size: 1em;
  }

  .page-index__slider-dot {
    width: 8px;
    height: 8px;
  }
}

@media (max-width: 480px) {
  .page-index__grid {
    grid-template-columns: 1fr; /* 1 column on smaller mobile */
  }

  .page-index__category-card img {
    
  }

  .page-index__hero-slider-section {
    margin-bottom: 20px;
  }

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

  .page-index__article-body {
    padding: 15px;
  }

  .page-index__blockquote {
    padding-left: 15px;
    margin: 20px 0;
  }

  .page-index__guide-list,
  .page-index__promotions-list {
    margin-left: 20px;
  }
}