.page-index {
    background-color: #F4F7FB; /* Custom Background */
    color: #1F2D3D; /* Custom Text Main */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: 10px; /* Small top padding for the main content to avoid header overlap */
}

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

/* Hero Slider */
.page-index__hero-slider-section {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.page-index__hero-slide-link {
    min-width: 100%;
    display: block;
}

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

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

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

.page-index__hero-dot.page-index__hero-dot--active {
    background-color: #FFFFFF;
}

.page-index__hero-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #FFFFFF;
    border: none;
    padding: 10px 15px;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.page-index__hero-nav-btn:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.page-index__hero-nav-btn--prev {
    left: 20px;
}

.page-index__hero-nav-btn--next {
    right: 20px;
}

/* Section Title */
.page-index__section-title-wrapper {
    max-width: 900px;
    margin: 0 auto 60px auto;
    text-align: center;
    padding: 0 20px;
}

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

.page-index__section-title-line {
    flex-grow: 1;
    height: 2px;
    background: linear-gradient(to right, #D6E2FF, #2F6BFF); /* Border color and Main color */
    max-width: 150px;
}

.page-index__main-title {
    font-size: clamp(2rem, 4vw, 3.2rem); /* Using clamp for responsive font size */
    font-weight: 700;
    color: #000000; /* Custom Color_1776249996415 */
    line-height: 1.2;
    margin: 0;
}

.page-index__intro-description {
    font-size: 1.1rem;
    color: #1F2D3D; /* Custom Text Main */
    margin-bottom: 30px;
}

.page-index__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-index__button {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-index__button--primary {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #FFFFFF;
    box-shadow: 0 5px 15px rgba(47, 107, 255, 0.4);
}

.page-index__button--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(47, 107, 255, 0.6);
}

.page-index__button--secondary {
    background-color: #FFFFFF; /* Card BG */
    color: #2F6BFF; /* Main color */
    border: 2px solid #2F6BFF;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-index__button--secondary:hover {
    background-color: #2F6BFF; /* Main color */
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(47, 107, 255, 0.6);
}

/* Category Grid */
.page-index__category-section {
    margin-bottom: 60px;
}

.page-index__section-heading {
    text-align: center;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 40px;
    font-weight: 700;
}

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

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

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

.page-index__category-image {
    width: 100%;
    height: 350px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

.page-index__category-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 20px 0;
    color: #000000; /* Custom Color_1776249996415 */
    text-align: center;
}

/* Article Body */
.page-index__article-body-section {
    padding-bottom: 80px;
}

.page-index__article-content {
    background-color: #FFFFFF; /* Card BG */
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-index__article-heading {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: #2F6BFF; /* Main color */
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-index__article-subheading {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: #000000; /* Custom Color_1776249996415 */
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-index__article-content p {
    font-size: 1.05rem;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 15px;
}

.page-index__article-content a {
    color: #2F6BFF; /* Main color */
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.page-index__article-content a:hover {
    color: #6FA3FF; /* Auxiliary color */
    text-decoration: underline;
}

.page-index__blockquote {
    border-left: 5px solid #6FA3FF; /* Auxiliary color */
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #1F2D3D; /* Text Main */
    background-color: #F4F7FB; /* Background color for subtle highlight */
    padding: 20px;
    border-radius: 8px;
}

.page-index__blockquote p {
    margin-bottom: 0;
}

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

.page-index__article-figure.page-index__aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.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; /* Ensure images are not too small */
    min-height: 200px;
}

.page-index__article-figure figcaption {
    font-size: 0.95rem;
    color: #6FA3FF; /* Auxiliary color */
    margin-top: 10px;
}

.page-index__step-list,
.page-index__promo-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.page-index__step-list li,
.page-index__promo-list li {
    background-color: #F4F7FB; /* Background color */
    border-left: 4px solid #2F6BFF; /* Main color */
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-index__step-list li .page-index__article-subheading {
    margin-top: 0;
    margin-bottom: 5px;
    color: #2F6BFF; /* Main color */
}

.page-index__step-list li p {
    margin-bottom: 0;
}

.page-index__promo-list li {
    font-size: 1.05rem;
    color: #1F2D3D; /* Text Main */
}

.page-index__cta-download {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-index__faq-item {
    background-color: #F4F7FB; /* Background color */
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-index__faq-question {
    font-size: 1.2rem;
    color: #2F6BFF; /* Main color */
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-index__faq-answer {
    font-size: 1rem;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-index__category-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    .page-index__category-image {
        height: 300px;
    }
    .page-index__article-content {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .page-index__hero-nav-btn {
        padding: 8px 12px;
        font-size: 20px;
    }
    .page-index__hero-nav-btn--prev {
        left: 10px;
    }
    .page-index__hero-nav-btn--next {
        right: 10px;
    }

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

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

    .page-index__intro-description {
        font-size: 1rem;
    }

    .page-index__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-index__button {
        width: 100%;
        padding: 12px 20px;
        font-size: 1rem;
    }

    .page-index__category-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for mobile */
        gap: 20px;
    }
    .page-index__category-image {
        height: 250px;
    }
    .page-index__category-title {
        font-size: 1.2rem;
        margin: 15px 0;
    }

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

    .page-index__article-heading {
        font-size: clamp(1.4rem, 4vw, 2rem);
    }

    .page-index__article-subheading {
        font-size: clamp(1.1rem, 3vw, 1.4rem);
    }

    .page-index__article-content p,
    .page-index__blockquote p,
    .page-index__promo-list li,
    .page-index__faq-answer {
        font-size: 0.95rem;
    }

    /* Important: Mobile image overflow prevention */
    .page-index__article-body-section img,
    .page-index__category-section img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-index__category-grid {
        grid-template-columns: 1fr; /* Single column for very small mobiles */
    }
    .page-index__hero-nav-dots {
        bottom: 10px;
        gap: 8px;
    }
    .page-index__hero-dot {
        width: 10px;
        height: 10px;
    }
    .page-index__hero-nav-btn {
        padding: 6px 10px;
        font-size: 18px;
    }
    .page-index__hero-nav-btn--prev {
        left: 5px;
    }
    .page-index__hero-nav-btn--next {
        right: 5px;
    }
    .page-index__main-title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }
    .page-index__section-title-line {
        max-width: 50px;
    }
}