body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.footer {
    background-color: #001f3f;
    color: white;
    padding: 20px;
    text-align: center;
    border-top: 5px solid #0056b3;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}

.social-icons a {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    margin: 5px;
    padding: 10px;
    background: #0056b3;
    border-radius: 5px;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #007bff;
}

.social-icons i {
    margin-right: 10px;
}

.contact-info, .map, .qr-code {
    margin: 10px;
}

iframe {
    border: none;
    width: 100%;
    max-width: 300px;
    height: 200px;
}

img {
    width: 300px;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .social-icons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .social-icons a {
        width: 80%;
        justify-content: center;
    }
    .contact-info p, .map p, .qr-code p {
        font-size: 14px;
    }
    img {
        width: 120px;
    }
}
