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

.page-index__hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 10px; /* Small top padding, main body padding-top is from shared.css */
}

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

.page-index__slide {
    min-width: 100%;
    flex-shrink: 0;
}

.page-index__slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.page-index__hero-content-wrapper {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.page-index__hero-cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-index__hero-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.page-index__title-divider {
    flex-grow: 1;
    height: 2px;
    background-color: #D6E2FF;
    margin: 0 20px;
    max-width: 150px;
}

.page-index__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #1F2D3D;
    text-align: center;
    padding: 0 10px;
}

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

.page-index__category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    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;
    color: #1F2D3D;
    text-align: center;
    padding-bottom: 15px;
}

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

.page-index__category-card img {
    width: 100%;
    height: 250px; /* Fixed height for category images */
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    transition: filter 0.3s ease;
}

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

.page-index__category-label {
    margin-top: 15px;
    font-size: 1.1em;
    font-weight: bold;
    color: #1F2D3D;
}

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

.page-index__content-wrapper {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

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

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

.page-index__highlight-text {
    color: #2F6BFF;
    font-weight: bold;
}

.page-index__h2 {
    font-size: 2em;
    color: #1F2D3D;
    margin-top: 50px;
    margin-bottom: 25px;
    border-bottom: 2px solid #D6E2FF;
    padding-bottom: 10px;
}

.page-index__h3 {
    font-size: 1.4em;
    color: #2F6BFF;
    margin-top: 35px;
    margin-bottom: 15px;
}

.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 {
    font-size: 0.9em;
    color: #6FA3FF;
    margin-top: 10px;
}

.page-index__list-steps,
.page-index__list-offers {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-index__list-steps li,
.page-index__list-offers li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    color: #1F2D3D;
}

.page-index__list-steps li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #2F6BFF;
}

.page-index__list-offers li::before {
    content: '🎁';
    position: absolute;
    left: 0;
    color: #2F6BFF;
}

.page-index__list-steps a,
.page-index__list-offers a,
.page-index__article-body p a {
    color: #2F6BFF;
    text-decoration: none;
    font-weight: bold;
}

.page-index__list-steps a:hover,
.page-index__list-offers a:hover,
.page-index__article-body p a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-index__main-title {
        font-size: clamp(1.8em, 4vw, 2.5em);
    }
    .page-index__h2 {
        font-size: 1.8em;
    }
    .page-index__h3 {
        font-size: 1.2em;
    }
}

@media (max-width: 768px) {
    .page-index__hero-cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-index__section-title-container {
        margin: 30px auto;
    }
    .page-index__title-divider {
        max-width: 80px;
    }
    .page-index__main-title {
        font-size: clamp(1.5em, 5vw, 2em);
    }
    .page-index__category-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    .page-index__category-card img {
        height: 200px;
    }
    .page-index__category-label {
        font-size: 1em;
    }
    .page-index__article-body {
        margin: 40px auto;
        padding: 0 15px;
        font-size: 1em;
    }
    .page-index__content-wrapper {
        padding: 25px;
    }
    .page-index__h2 {
        font-size: 1.5em;
        margin-top: 40px;
        margin-bottom: 20px;
    }
    .page-index__h3 {
        font-size: 1.1em;
        margin-top: 30px;
        margin-bottom: 10px;
    }
    .page-index__article-figure img {
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }
    /* Ensure all images in content area are responsive and not smaller than 200px */
    .page-index img {
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .page-index__main-title {
        font-size: clamp(1.2em, 6vw, 1.8em);
    }
    .page-index__category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .page-index__category-card img {
        
    }
    .page-index__hero-content-wrapper {
        bottom: 10%;
    }
    .page-index__hero-cta-button {
        font-size: 0.9em;
        padding: 10px 20px;
    }
    .page-index__content-wrapper {
        padding: 15px;
    }
}