.contact-info-block {
    padding: 60px 0;
    background-color: #fff;
    max-width: 80%;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}
.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}
.contact-left {
    flex: 1;
    min-width: 300px;
}
.contact-right {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.contact-section-title {
    font-size: 24px;
    font-weight: 700;
    color: #003366;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}
.contact-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #003366;
}
.contact-details-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}
.contact-group {
    flex: 1;
    min-width: 200px;
}
.contact-group h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}
.contact-group p {
    margin-bottom: 8px;
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}
.contact-group a {
    color: #003366;
    text-decoration: none;
    font-weight: 500;
}
.contact-group a:hover {
    text-decoration: underline;
}
.map-embed {
    border: 1px solid #e5e5e5;
    background: #f9f9f9;
    margin-top: 15px;
    height: 350px;
}
.map-embed iframe {
    width: 100%;
    height: 100%;
    display: block;
}
.privacy-note {
    font-size: 13px;
    color: #888;
    margin-top: 15px;
}
.address-text {
    margin-bottom: 10px;
    font-size: 15px;
    color: #444;
}

@media (max-width: 991px) {
    .contact-grid {
        flex-direction: column;
        gap: 40px;
    }
    .contact-details-grid {
        flex-direction: column;
        gap: 20px;
    }
}