/* Footer Section */
footer {
    background: #31445d;
    color: white;
    padding: 40px 20px;
    text-align: center;
    font-family: Arial, sans-serif;
}

footer p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.5;
}

footer .social-icons {
    margin-bottom: 20px;
}

footer .social-icons a {
    color: white;
    margin: 0 15px;
    font-size: 24px; /* Increase icon size */
    transition: color 0.3s ease;
}

footer .social-icons a:hover {
    color: #ffcc00; /* Highlight icon on hover */
}

footer .footer-links {
    margin-bottom: 20px;
}

footer .footer-links a {
    color: #ffcc00;
    margin: 0 15px;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer .footer-links a:hover {
    color: #e6b800; /* Slightly darker yellow on hover */
}

footer .map iframe {
    border: none;
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    width: 100%;
    height: 250px; /* Increase height for better visibility */
}

/* Responsive Design */
@media (max-width: 768px) {
    footer {
        padding: 30px 15px; /* Adjust padding for smaller screens */
    }

    footer .social-icons a {
        margin: 0 10px; /* Decrease margin for mobile */
    }

    footer .footer-links a {
        margin: 0 10px; /* Decrease margin for mobile */
    }

    footer .map iframe {
        height: 200px; /* Adjust map height for smaller screens */
    }
}
