    *,
    *::before,
    *::after {
        box-sizing: border-box;
    }

    /* THE FIX: Forced separation and space */
    .soprolo-footer-parent-wrapper {
        display: block !important;
        clear: both !important;
        width: 100% !important;
        float: none !important;
        /* Adjust the value below to add more or less space */
        margin-top: 5px !important;
    }

    :root {
        --soprolo-bg: #ffffff;
        --soprolo-text: #1d1d1f;
        --soprolo-gray: #86868b;
        --soprolo-border: rgba(0, 0, 0, 0.1);
        --soprolo-accent: #0071e3;
        --font-main: 'Plus Jakarta Sans', sans-serif;
    }

    .soprolo-footer {
        background: var(--soprolo-bg);
        color: var(--soprolo-text);
        padding: 70px 20px 40px;
        border-top: 1px solid var(--soprolo-border);
        width: 100%;
        font-family: var(--font-main);
        -webkit-font-smoothing: antialiased;
    }

    .footer-content {
        max-width: 1024px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 40px;
    }

    .reveal-item {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .reveal-item.active {
        opacity: 1;
        transform: translateY(0);
    }

    .footer-col h3 {
        font-size: 13px;
        font-weight: 700;
        margin-bottom: 25px;
        color: var(--soprolo-text);
        letter-spacing: -0.01em;
        margin-top: 0;
    }

    .footer-col ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-col ul li {
        margin-bottom: 16px;
    }

    .footer-col ul li a {
        text-decoration: none;
        color: var(--soprolo-gray);
        font-size: 14px;
        font-weight: 500;
        transition: all 0.3s ease;
        display: flex;
        align-items: flex-start;
        gap: 12px;
    }

    .footer-col ul li a:hover {
        color: var(--soprolo-text);
        transform: translateX(4px);
    }

    .footer-col ul li a i {
        font-size: 16px;
        margin-top: 3px;
        color: var(--soprolo-gray);
        transition: color 0.3s ease;
    }

    .footer-col ul li a:hover i {
        color: var(--soprolo-accent);
    }

    .tool-title {
        display: block;
        font-weight: 600;
        color: var(--soprolo-text);
        margin-bottom: 2px;
    }

    .tool-desc {
        font-size: 12px;
        color: var(--soprolo-gray);
        display: block;
        line-height: 1.4;
    }

    .social-desc {
        font-size: 14px;
        color: var(--soprolo-gray);
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .social-grid {
        display: flex;
        gap: 6px;
        /* flex-wrap: wrap; */
    }

    .social-btn {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: #f5f5f7;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--soprolo-text);
        text-decoration: none;
        font-size: 18px;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .social-btn:hover {
        background: var(--soprolo-text);
        color: #fff;
        transform: translateY(-5px);
    }

    .footer-bottom {
        max-width: 1024px;
        margin: 60px auto 0;
        padding-top: 25px;
        border-top: 1px solid var(--soprolo-border);
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer-bottom p {
        font-size: 12px;
        color: var(--soprolo-gray);
        font-weight: 500;
        margin: 0;
    }

    p {
        margin-left: 0 !important;
    }

    .legal-links {
        display: flex;
        gap: 20px;
    }

    .legal-links a {
        font-size: 12px;
        color: var(--soprolo-gray);
        text-decoration: none;
        transition: color 0.2s;
    }

    .legal-links a:hover {
        color: var(--soprolo-text);
        text-decoration: underline;
    }

    @media (max-width: 768px) {
        .footer-content {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media (max-width: 480px) {
        .footer-content {
            grid-template-columns: 1fr;
        }

        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }

        .soprolo-footer {
            padding: 40px 20px 40px;
        }
    }