.footer {
    background-color: #10367D;
    color: white;
    padding: 80px 60px 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto 60px;
}

.footer-brand {
    max-width: 400px;
}

.footer-reviews {
    margin-bottom: 40px;
}

.footer-reviews .customer-avatars {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    gap: -10px;
}

.footer-reviews .avatar {
    width: 40px;
    height: 40px;
    border: 2px solid #10367D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: white;
    margin-right: -10px;
}

.avatar-m {
    background: linear-gradient(135deg, #FF6B6B, #FF8E72);
}

.avatar-o {
    background: linear-gradient(135deg, #4ECDC4, #44A3A0);
}

.avatar-a {
    background: linear-gradient(135deg, #FFE66D, #FFD93D);
    color: #333;
}

.avatar-l {
    background: linear-gradient(135deg, #95E1D3, #6BC98D);
}

.avatar-count {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    color: #10367D;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    margin-left: -10px;
}

.stars {
    color: #ffd700;
    font-size: 20px;
    margin-bottom: 8px;
}

.footer-reviews p {
    color: #aaa;
    font-size: 14px;
}

.footer-brand .logo {
    font-size: 32px;
    margin-bottom: 20px;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.footer-description {
    color: #aaa;
    line-height: 1.6;
    font-size: 16px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    color: white;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #aaa;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s, transform 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-column a:hover {
    color: #0077B6;
    transform: translateX(4px);
}

.footer-column i {
    font-size: 18px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1400px;
    margin: 0 auto;
}

.template-btn {
    background-color: #0077B6;
    color: white;
    padding: 14px 32px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s;
}

.template-btn:hover {
    background-color: #005a8d;
}

.made-badge {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.footer-copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1400px;
    margin: 0 auto;
    font-size: 14px;
    color: #aaa;
}

.footer-copyright p {
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.copyright-symbol {
    font-size: 16px;
    margin: 0 4px;
}

@media (max-width: 1024px) {
    .footer {
        padding: 60px 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
        margin-bottom: 40px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-brand {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 24px 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
        text-align: center;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 28px;
        justify-items: center;
    }

    .footer-column ul {
        padding: 0;
    }

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

    .footer-column a {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 16px 24px;
    }

    .footer-content {
        gap: 24px;
        margin-bottom: 24px;
    }

    .footer-reviews {
        margin-bottom: 24px;
    }

    .footer-reviews .customer-avatars {
        justify-content: center;
        gap: 0;
    }

    .footer-column li {
        margin-bottom: 8px;
    }

    .footer-column a {
        font-size: 14px;
    }

    .footer-bottom {
        gap: 12px;
    }

    .footer-copyright {
        font-size: 13px;
    }
}
