    /* Remove Astra's default padding/margin */
    body .ast-container { max-width: 100% !important; padding: 0 !important; }
    body .site-content { padding: 0 !important; }
    body .entry-content { margin: 0 !important; }
    body #primary { margin: 0 !important; }
    body .ast-separate-container .ast-article-single { padding: 0 !important; }
    body .site-main { padding: 0 !important; }
    
    /* ===== MAIN CONTAINER ===== */
    .guide-index-page {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        background: #FFFFFF;
    }
    
    /* ===== BREADCRUMBS ===== */
    .guide-breadcrumbs {
        max-width: 1200px;
        width: 100%;
        margin: 0 auto 10px;
        padding: 30px 0 0 16px;
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .guide-breadcrumbs a {
        font-family: 'Nunito';
        font-weight: 500;
        font-size: 16px;
        line-height: 24px;
        color: #8C8C8C;
    }

    .guide-breadcrumbs a:hover {
        color: #334EC8;
    }

    .guide-breadcrumbs .separator {
        display: flex;
        color: #333333;
        font-size: 14px;
    }

    .guide-breadcrumbs .current {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 8px;
        font-family: 'Nunito', sans-serif;
        font-size: 16px;
        line-height: 24px;
        font-weight: 400;
        color: #474747;
    }
    
    /* ===== HERO SECTION ===== */
    .guide-index-hero {
        max-width: 1200px;
        margin: 0 auto;
        padding: 80px 40px 50px;
        text-align: center;
    }

    .guide-index-title {
        font-family: 'Inter', sans-serif;
        font-weight: 700;
        font-size: 56px;
        line-height: 80px;
        color: #333333;
        margin: 0 0 16px 0;
    }

    .guide-index-subtitle {
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #333333;
        max-width: 800px;
        margin: 0 auto;
    }

    /* ===== TOPICS CONTAINER ===== */
    .guide-topics-inner {
        padding: 80px 0;
        background: #F7F8FD;
        border-width: 1px 0px;
        border-style: solid;
        border-color: #B3B3B3;
    }

    .guide-topics-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
        background: #F7F8FD;
    }

    /* ===== TOPIC CARD ===== */
    .guide-topic-card {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        padding: 32px 40px 40px;
        gap: 40px;
        background: #FFFFFF;
        border: 1px solid #617798;
        border-radius: 16px;
        margin-bottom: 24px;
        transition: box-shadow 0.3s ease, border-color 0.3s ease;
    }

    .guide-topic-card:last-child {
        margin-bottom: 0;
    }

    .guide-topic-card:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        border-color: #B8C3FF;
    }

    .guide-topic-content {
        flex: 1;
    }

    .guide-topic-title {
        font-family: 'Inter', sans-serif;
        font-weight: 600;
        font-size: 32px;
        line-height: 150%;
        color: #333333;
        margin: 0 0 16px 0;
    }

    .guide-topic-description {
        display: -webkit-box;
        min-height: 96px;
        margin: 0;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #333333;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .guide-topic-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        flex-shrink: 0;
    }

    .guide-topic-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 12px 20px;
        background: #334EC8;
        border-radius: 8px;
        font-family: 'Inter', sans-serif;
        font-weight: 600;
        font-size: 16px;
        color: #FFFFFF;
        text-decoration: none;
        transition: background 0.3s ease;
        white-space: nowrap;
    }

    .guide-topic-btn:hover {
        background: #2A41A8;
        color: #FFFFFF;
    }

    .guide-topic-time {
        display: flex;
        align-items: center;
        gap: 4px;
        font-family: 'Inter', sans-serif;
        font-weight: 500;
        font-size: 16px;
        line-height: 16px;
        color: #617798;
    }

    /* ===== CTA SECTION ===== */
    .guide-cta-section {
        background: #001B5E;
        padding: 80px 40px;
        text-align: center;
    }

    .guide-cta-title {
        font-family: 'Inter', sans-serif;
        font-weight: 700;
        font-size: 36px;
        line-height: 44px;
        color: #FFFFFF;
        margin: 0 0 32px 0;
    }

    .guide-cta-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 16px 32px;
        background: #FFFFFF;
        border-radius: 8px;
        font-family: 'Inter', sans-serif;
        font-weight: 600;
        font-size: 18px;
        color: #334EC8;
        text-decoration: none;
        transition: transform 0.3s ease;
    }

    .guide-cta-button:hover {
        transform: translateY(-2px);
    }

    /* ===== MOBILE RESPONSIVE ===== */
    @media (max-width: 768px) {
        .guide-breadcrumbs {
            margin: 0;
            padding: 16px 16px 0;
            order: -1;
        }

        .guide-index-hero {
            padding: 24px 16px 0 16px;
        }

        .guide-index-title {
            font-size: 44px;
            line-height: 124%;
            text-align: left;
        }

        .guide-index-subtitle {
            font-size: 16px;
            line-height: 24px;
            text-align: left;
        }

        .guide-topics-inner {
            padding: 80px 0 0;
            background: transparent;
            border-width: 0;
            border-style: solid;
            border-color: #B3B3B3;
        }

        .guide-topics-container {
            padding: 0 16px 80px;
            background: transparent;
        }

        .guide-topic-card {
            flex-direction: column;
            padding: 16px;
            gap: 16px;
        }

        .guide-topic-title {
            margin: 0 0 12px 0;
        }

        .guide-topic-description {
            -webkit-line-clamp: 8;
        }

        .guide-topic-actions {
            display: flex;
            flex-direction: column-reverse;
            align-items: flex-end;
            gap: 16px;
            flex-shrink: 0;
            width: 100%;
        }

        .guide-topic-time {
            justify-content: flex-end;
        }

        .guide-topic-btn {
            width: 100%;
        }

        .guide-cta-section {
            padding: 60px 20px;
        }

        .guide-cta-title {
            font-size: 28px;
            line-height: 36px;
        }
    }