/* Footer Styles */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section p {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.footer-section iframe {
    width: 100%;
    height: 200px; /* Resized map */
    border: none;
    border-radius: 5px;
    margin-top: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: var(--primary-color);
}

.footer-section i {
    margin-right: 10px;
    color: var(--primary-color);
    width: 20px;
}

.footer-section p {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
}

.footer-bottom i {
    margin-right: 5px;
}
.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}
/* Responsive Design */
@media screen and (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-section iframe {
        height: 120px;
    }
}