/* Footer Container */
        .footer-wrapper {
            background: linear-gradient(0deg, var(--text) 0%, var(--base) 100%);
            max-width: 1200px;
            margin: 0 auto;
            border-radius: 3rem;
            padding: 4rem;
            padding-bottom: 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
            color: var(--white);
        }

        /* Top Section: Brand & Links */
        .footer-top {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 48px;
        }

        /* Brand Column (Left) */
        .footer-brand {
            flex: 1;
            max-width: 380px;
        }

        .brand-logo {
            position: relative;
            height: 3rem;
            width: 13.84rem;
            margin-bottom: 2rem;
        }

        .brand-desc {
            color: var(--white);
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 24px;
        }

        .social-icons {
            display: flex;
            gap: 16px;
        }

        .social-icons a {
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: opacity 0.2s;
        }

        .social-icons a:hover {
            opacity: 0.7;
        }

        /* Links Section (Right) */
        .footer-links-container {
            display: flex;
            gap: 64px;
            flex-wrap: wrap;
        }

        .link-column h4 {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--white);
        }

        .link-column ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .link-column a {
            color: var(--white);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.2s;
        }

        .link-column a:hover {
            color: #111827;
        }

        /* Divider */
        .footer-divider {
            border: none;
            border-top: 1px solid #e5e7eb;
            margin: 40px 0 24px 0;
        }

        /* Bottom Section: Copyright & Legal */
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .copyright {
            color: var(--white);
            font-size: 13px;
        }

        .legal-links {
            display: flex;
            gap: 24px;
        }

        .legal-links a {
            color: var(--white);
            text-decoration: underline;
            font-size: 13px;
            text-underline-offset: 3px;
            transition: color 0.2s;
        }

        .legal-links a:hover {
            color: #111827;
        }

        .footer-wrapper .grad-logo{
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'heading';
            color: #000;
            height: 12rem;
        }
        .footer-wrapper .grad-logo h1{
            position: absolute;
            margin-top: 5rem;
            font-size: 12vw;
            background: linear-gradient(0deg, var(--text) 30%, var(--base) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .footer-wrapper {
                padding: 3rem;
            }
            .footer-top {
                flex-direction: column;
            }
            .footer-links-container {
                gap: 40px;
                justify-content: space-between;
                width: 100%;
            }
            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
            }
            .footer-wrapper .grad-logo{
                height: 5rem;
            }
            .footer-wrapper .grad-logo h1{
                font-size: 15vw;
            }
        }