
.footer {
    border-top: 4px solid #fff;
    text-align: center;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 40px 0 30px 0;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
}

.footer-boxes {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.footer-box {
    flex: 1 1 0;
    background: none;
    padding: 18px 12px;
    border-radius: 8px;
    margin: 0 8px;
    min-width: 120px;
    color: #888;
    font-size: 1.1rem;
    box-sizing: border-box;
}


/* Responsive for small screens */
@media (orientation: portrait), (max-width: 768px) {
    .footer-boxes {
        flex-direction: column;
        gap: 16px;
    }
    .footer-box {
        margin: 0;
    }
}