.page-index {
    font-family: Arial, sans-serif;
    color: #1F2D3D;
    background-color: #F4F7FB;
    line-height: 1.6;
}

.page-index__hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
    background-color: #2F6BFF; /* Fallback for slider area */
}

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

.page-index__slide-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-width: 100%; /* Ensure images fill the slider width */
}

.page-index__hero-cta {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 25px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
    z-index: 10;
    white-space: nowrap;
}

.page-index__hero-cta:hover {
    opacity: 0.9;
}

.page-index__slider-nav {
    position: absolute;
    bottom: 10px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
}

.page-index__slider-button {
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 50%;
    margin: 0 5px;
    font-size: 1.2em;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-index__slider-button--prev::before {
    content: '❮';
}

.page-index__slider-button--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__active {
    background-color: #FFFFFF;
}

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

.page-index__decoration-line {
    flex-grow: 1;
    height: 2px;
    background-color: #D6E2FF;
    margin: 0 20px;
    max-width: 200px;
}

.page-index__main-title {
    font-size: clamp(1.8em, 3.5vw, 2.5em);
    font-weight: bold;
    color: #1F2D3D;
    text-align: center;
    line-height: 1.2;
    margin: 0;
    padding: 0 15px;
}

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

.page-index__category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 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 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #1F2D3D;
}

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

.page-index__category-card img {
    width: 100%;
    height: 250px; /* Fixed height for vertical aspect ratio */
    object-fit: cover;
    display: block;
    border-radius: 12px 12px 0 0;
    transition: transform 0.3s ease;
    min-width: 200px;
    min-height: 200px;
}

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

.page-index__category-label {
    padding: 15px 10px;
    font-size: 1.1em;
    font-weight: bold;
    text-align: center;
    width: 100%;
    background-color: #FFFFFF;
    border-top: 1px solid #D6E2FF;
}

.page-index__article-body {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 15px;
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 30px;
}

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

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

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

.page-index__h2-title {
    font-size: 2em;
    color: #2F6BFF;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #D6E2FF;
    padding-bottom: 10px;
}

.page-index__h3-title {
    font-size: 1.5em;
    color: #1F2D3D;
    margin-top: 30px;
    margin-bottom: 15px;
}

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

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

.page-index__article-body ul li {
    margin-bottom: 8px;
}

.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 0;
    text-align: center;
}

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

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

.page-index__aligncenter {
    text-align: center;
}

@media (max-width: 768px) {
    .page-index__main-title {
        font-size: clamp(1.5em, 5vw, 2em);
    }

    .page-index__decoration-line {
        max-width: 50px;
        margin: 0 10px;
    }

    .page-index__category-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }

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

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

    .page-index__h2-title {
        font-size: 1.8em;
    }

    .page-index__h3-title {
        font-size: 1.3em;
    }

    .page-index__hero-cta {
        font-size: 1em;
        padding: 10px 20px;
        bottom: 15px;
    }

    .page-index__hero-slider .page-index__slide-image {
        max-width: 100%;
        height: auto;
    }

    .page-index__article-body img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-index__category-grid {
        grid-template-columns: 1fr 1fr;
    }

    .page-index__category-card img {
        
    }
}