    footer {
        background-color: white;
        padding: 3rem 10%;
        margin-top: 4rem;
        border-top: 1px solid #eee;
    }

    .footer-content {
        max-width: 1400px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .footer-links {
        display: flex;
        gap: 2rem;
        list-style: none;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-links a {
        text-decoration: none;
        color: #666;
        transition: color 0.3s;
    }

    .footer-links a:hover {
        color: #B55E8A;
    }

    .social-icons {
        display: flex;
        gap: 1.5rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: #f0f0f0;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #666;
        text-decoration: none;
        transition: background-color 0.3s, color 0.3s;
    }

    .social-icon:hover {
        background-color: #B55E8A;
        color: white;
    }

    .copyright {
        color: #999;
        font-size: 0.9rem;
    }

    /* Footer Responsive */
    @media (max-width: 1200px) {
        footer {
            padding: 3rem 6%;
        }
    }

    @media (max-width: 992px) {
        footer {
            padding: 3rem 5%;
        }
    }

    @media (max-width: 768px) {
        footer {
            padding: 2rem 4%;
        }

        .footer-links {
            flex-direction: column;
            gap: 1rem;
            text-align: center;
        }
    }

    @media (max-width: 480px) {
        footer {
            padding: 2rem 3%;
        }
    }