/**
 * Office Information Styles
 *
 * Styles for office information card display
 */

.office-information {
    margin: 30px 0;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.office-information .section-title h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
}

.office-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.office-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.office-header .office-name {
    font-size: 20px;
    margin: 0 0 5px 0;
    color: #333;
}

.office-header .office-nrds {
    color: #666;
    font-size: 14px;
}

.office-contact,
.office-address {
    margin-top: 15px;
}

.contact-item,
.address-item {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-item i,
.address-item i {
    margin-top: 3px;
    color: #007bff;
}

.contact-item strong,
.address-item strong {
    min-width: 80px;
    color: #555;
}

.contact-item a {
    color: #007bff;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.office-address address {
    font-style: normal;
    line-height: 1.6;
}
