.footer {
    background-color: #171717;
    color: #fff;
    padding: 40px 20px;
    text-align: left;
    font-family: 'Mulish', sans-serif;
}

.footer-container {
    max-width: 1168px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.footer-contact p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.footer-contact p strong {
    font-size: 16px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #ffb400;
}

.btn-vip {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.btn-vip:hover {
    background-color: #0056b3;
}

.footer-logo img {
    max-width: 200px;
    height: auto;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-contact,
    .footer-links,
    .footer-logo {
        margin-bottom: 20px;
    }

    .footer-links ul {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .btn-vip {
        margin: 0 auto;
    }
}
