.page-index {
    background-color: #F4F7FB; /* Background color from custom palette */
    color: #1F2D3D; /* Text Main color from custom palette */
}

/* Hero Slider */
.page-index__hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 10px; /* Small top padding as per rule 5 */
    margin-bottom: 40px;
}

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

.page-index__slide {
    min-width: 100%;
    box-sizing: border-box;
}

.page-index__slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 200px; /* Min image size */
}

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

.page-index__slider-prev,
.page-index__slider-next {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    border: none;
    color: #FFFFFF;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    line-height: 1;
    transition: background-color 0.3s ease;
}

.page-index__slider-prev:hover,
.page-index__slider-next:hover {
    opacity: 0.9;
}

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

.page-index__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__dot.page-index__active-dot {
    background-color: #2F6BFF; /* Main color */
}

/* Centered Decorative Main Title */
.page-index__section-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px auto;
    max-width: 1200px;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-index__main-title {
    color: #000000; /* Custom Color_1776249996415 */
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    padding: 0 20px;
    max-width: 800px;
    /* font-size handled by browser default for H1, or clamp if needed, as per rule */
}

.page-index__title-divider {
    flex-grow: 1;
    height: 2px;
    background: linear-gradient(to right, transparent, #D6E2FF, transparent); /* Border color */
    max-width: 200px;
}

/* Category Gateway */
.page-index__category-gateway {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-index__grid-container {
    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;
    background-color: #FFFFFF; /* Card BG */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    position: relative;
    min-height: 200px; /* Min card height */
}

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

.page-index__category-card img {
    width: 100%;
    height: 100%; /* Make image fill card height for vertical ratio */
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    min-width: 200px; /* Min image size */
    min-height: 200px; /* Min image size */
}

.page-index__category-card:hover img {
    transform: scale(1.05);
}

.page-index__category-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    color: #FFFFFF;
    text-align: center;
    padding: 15px 10px;
    font-size: 1.1em;
    font-weight: 600;
    box-sizing: border-box;
}

/* Long SEO Article Body */
.page-index__article-body {
    background-color: #FFFFFF; /* Card BG */
    padding: 60px 0;
    margin-top: 40px;
}

.page-index__content-wrapper {
    max-width: 800px; /* Content max-width */
    margin: 0 auto;
    padding: 0 20px;
    line-height: 1.8;
}

.page-index__blockquote {
    border-left: 5px solid #2F6BFF; /* Main color for blockquote */
    padding-left: 20px;
    margin: 40px 0;
    font-style: italic;
    color: #1F2D3D;
    background-color: #F4F7FB; /* Background color from custom palette */
    padding: 20px;
    border-radius: 5px;
}

.page-index__blockquote a {
    color: #2F6BFF; /* Main color for links */
    text-decoration: none;
    font-weight: 600;
}

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

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

.page-index__sub-heading {
    color: #000000; /* Custom Color_1776249996415 */
    font-size: 1.5em;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.page-index__paragraph {
    margin-bottom: 1.5em;
    color: #1F2D3D; /* Text Main */
}

.page-index__paragraph a {
    color: #2F6BFF; /* Main color for links */
    text-decoration: none;
    font-weight: 500;
}

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

.page-index__list {
    list-style: disc inside;
    margin-bottom: 1.5em;
    padding-left: 20px;
    color: #1F2D3D; /* Text Main */
}

.page-index__list-item {
    margin-bottom: 0.8em;
}

.page-index__list-item a {
    color: #2F6BFF; /* Main color for links */
    text-decoration: none;
    font-weight: 500;
}

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

.page-index__article-figure {
    margin: 40px auto;
    text-align: center;
    max-width: 800px;
}

.page-index__article-figure img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Min image size */
    min-height: 200px; /* Min image size */
}

.page-index__figcaption {
    font-size: 0.9em;
    color: #666666;
    margin-top: 10px;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .page-index__main-title {
        font-size: 2.5em;
    }
    .page-index__section-heading {
        font-size: 1.8em;
    }
    .page-index__sub-heading {
        font-size: 1.3em;
    }
}

@media (max-width: 768px) {
    .page-index__hero-slider {
        margin-bottom: 20px;
    }
    .page-index__slider-nav {
        bottom: 10px;
    }
    .page-index__main-title {
        font-size: clamp(1.8em, 5vw, 2.2em); /* Using clamp for H1 as per rule */
        padding: 0 10px;
    }
    .page-index__title-divider {
        max-width: 100px;
    }
    .page-index__grid-container {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Adjust for smaller screens */
        gap: 15px;
    }
    .page-index__category-card {
        min-height: 150px; /* Adjust min height for mobile cards */
    }
    .page-index__category-card img {
        min- /* Adjust min width for mobile cards */
        min- /* Adjust min height for mobile cards */
    }
    .page-index__category-label {
        font-size: 1em;
        padding: 10px 5px;
    }
    .page-index__article-body {
        padding: 30px 0;
    }
    .page-index__content-wrapper {
        padding: 0 15px;
    }
    .page-index__section-heading {
        font-size: 1.5em;
        margin-top: 40px;
        margin-bottom: 20px;
    }
    .page-index__sub-heading {
        font-size: 1.2em;
        margin-top: 30px;
        margin-bottom: 10px;
    }
    .page-index__article-figure img {
        max-width: 100%; /* Ensure images don't overflow */
        height: auto;
        min-width: 200px; /* Content area image CSS size lower bound */
        min-height: 200px; /* Content area image CSS size lower bound */
    }
    /* Mobile content image constraint for .page-index */
    .page-index img {
        max-width: 100%;
        height: auto;
    }
}

/* Ensure content area images are at least 200px */
.page-index__article-body img,
.page-index__category-card img {
    min-width: 200px;
    min-height: 200px;
}