footer {
    background: #02275c;
    color: white;
}
.footerContainer {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 40px 20px;
    flex-wrap: wrap;
}
.map iframe {
    width: 300px;
    height: 250px;
    border: none;
}
.contactSection {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.contactItem {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
    font-size: 16px;
}
.contactIcon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: 0.3s ease;
}
.contactIcon svg {
    width: 20px;
    height: 20px;
    fill: #02275c;
    display: block;
}
.contactItem:hover .contactIcon {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255,255,255,0.6);
}
.clockRow {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.cvRow {
    display: flex;
    gap: 10px;
}
.socialColumn {
    max-width: 300px;
    flex-shrink: 0;
}
.socialTitle {
    font-weight: bold;
    font-size: 16px;
}
.iconRow {
    display: flex;
    gap: 45px;
}
.socialIcon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    flex-shrink: 0;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.socialIcon svg {
    width: 20px;
    height: 20px;
    fill: #02275c;
}
.socialIcon:hover {
    transform: scale(1.15);
    box-shadow: 0 0 20px rgba(255,255,255,0.7);
}
.footerBottom {
    text-align: center;
    padding: 20px 0;
}
.contactText {
    display: flex;
    flex-direction: column;
    color: white;
}
@media (max-width: 768px) {
    .footerContainer {
        flex-direction: column;
        align-items: center;
    }
    .map iframe {
        width: 100%;
        max-width: 400px;
    }
}