    .footer {
        background: var(--secondary-color);
        color: white;
    }

    .footer-main {
        padding: 60px 0 40px;
    }

    .footer-logo-link {
        text-decoration: none;
        display: inline-block;
        background: white;
        padding: 8px 15px;
        border-radius: 10px;
    }

    .footer-logo-img {
        height: 40px;
        width: auto;
        max-width: 150px;
        object-fit: contain;
    }

    .footer-desc {
        color: #aaa;
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        color: white;
        margin-right: 10px;
        transition: all 0.3s;
    }

    .footer-social a:hover {
        background: var(--primary-color);
        transform: translateY(-3px);
    }

    .footer-title {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 20px;
        color: white;
        position: relative;
        padding-bottom: 10px;
    }

    .footer-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 2px;
        background: var(--primary-color);
    }

    .footer-links {
        list-style: none;
        padding: 0;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: #aaa;
        text-decoration: none;
        transition: all 0.3s;
        font-size: 0.9rem;
    }

    .footer-links a:hover {
        color: var(--primary-color);
        padding-left: 5px;
    }

    .footer-contact .contact-item {
        display: flex;
        gap: 12px;
        margin-bottom: 15px;
        color: #aaa;
        font-size: 0.9rem;
    }

    .footer-contact .contact-item i {
        color: var(--primary-color);
        font-size: 1.1rem;
        margin-top: 3px;
    }

    .footer-contact a {
        color: #aaa;
        text-decoration: none;
    }

    .footer-payments {
        background: rgba(255, 255, 255, 0.05);
        padding: 20px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .payment-icons i {
        font-size: 1.5rem;
        margin-right: 15px;
        color: #aaa;
    }

    .footer-bottom {
        background: rgba(0, 0, 0, 0.3);
        padding: 20px 0;
        font-size: 0.85rem;
        color: #888;
    }

