/* === FIX 1: Feature pages — SEO toggle section on WHITE bg, FULL width === */
    .si-seo {
        padding: 32px 0 56px !important;
        background: #ffffff !important;
    }
    /* Keep toggle button at full container width (no card wrap) */
    .si-seo__toggle {
        max-width: 100% !important;
        margin: 0 auto !important;
    }
    .si-seo__toggle-btn {
        max-width: 720px !important;
    }
    /* When open, content uses full container width naturally */
    .si-seo__content {
        max-width: 100% !important;
    }
    @media (max-width: 768px) {
        .si-seo { padding: 24px 0 40px !important; }
    }

    /* === FIX 2: Homepage seo-toggle — force single column on mobile === */
    @media (max-width: 768px) {
        .seo-toggle__text section > div[style*="grid-template-columns"] {
            grid-template-columns: 1fr !important;
            gap: 24px !important;
        }
        .seo-toggle__text section {
            padding: 24px 16px !important;
        }
        .seo-toggle__text h2 {
            font-size: 22px !important;
        }
        .seo-toggle__text p {
            font-size: 15px !important;
            line-height: 1.7 !important;
        }
    }