.contacts-container {
    max-width: 1200px;
    margin: 0 auto;
}
.contacts-grid {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.office-card {
    flex: 1;
    min-width: 320px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.office-card:hover {
    border-color: #0073aa;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transform: translateY(-2px);
}
.office-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748b;
    margin-bottom: 10px;
}
.office-card h3 {
    margin: 0 0 15px 0;
    color: #1e293b;
    font-size: 24px;
}
.office-card .address {
    font-size: 16px;
    color: #334155;
    margin-bottom: 20px;
}
.contact-details span {
    display: block;
    font-size: 14px;
    color: #64748b;
    margin-bottom: 8px;
}
.contact-details a {
    color: #0073aa;
    text-decoration: none;
}
.map-btn {
    margin-top: auto;
    background: #f1f5f9;
    border: none;
    padding: 10px;
    border-radius: 6px;
    color: #475569;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
}
.map-frame {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}