    /* Footer Styles */
    .site-footer {
        background-color: #f7f7f7;
        color: #222;
        border-top: 1px solid #dddddd;
        padding: 40px 0 20px;
        margin-top: auto;
    }

    .footer-wrapper {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .footer-sections {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        margin-bottom: 40px;
    }

    .footer-section h3 {
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 20px;
        color: #222;
    }

    .footer-nav-list {
        list-style: none;
    }

    .footer-nav-list li {
        margin-bottom: 15px;
    }

    .footer-nav-link {
        color: #717171;
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.2s ease;
    }

    .footer-nav-link:hover {
        color: #222;
        text-decoration: underline;
    }

    .footer-bottom-area {
        border-top: 1px solid #dddddd;
        padding-top: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .footer-left-content {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 15px;
    }

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

    .footer-legal-link {
        color: #222;
        text-decoration: none;
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .footer-legal-link:hover {
        text-decoration: underline;
    }

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

    .footer-right-content {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .footer-locale-selectors {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .language-selector,
    .currency-selector {
        display: flex;
        align-items: center;
        gap: 5px;
        color: #222;
        font-size: 0.9rem;
        text-decoration: none;
    }

    .language-selector:hover,
    .currency-selector:hover {
        text-decoration: underline;
    }

    .social-media-links {
        display: flex;
        gap: 15px;
    }

    .social-media-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        color: #222;
        text-decoration: none;
    }

    .social-media-link:hover {
        color: #ff385c;
    }

    /* Responsive Styles */
    @media (max-width: 992px) {
        .footer-sections {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .footer-bottom-area {
            flex-direction: column;
            align-items: flex-start;
            gap: 20px;
        }

        .footer-right-content {
            width: 100%;
            justify-content: space-between;
        }

        .footer-section h3 {
            font-size: 21px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #222;
        }

        .footer-nav-link {
            color: #717171;
            text-decoration: none;
            font-size: 1rem;
            transition: color 0.2s ease;
        }
    }

    @media (max-width: 576px) {
        .footer-sections {
            grid-template-columns: 1fr;
        }

        .footer-left-content {
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
        }

        .footer-right-content {
            flex-direction: column;
            align-items: flex-start;
            gap: 15px;
        }

        .footer-locale-selectors {
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
        }
    }

    ul.footer-nav-list {
        padding: 0;
    }