/**
 * Agent Information Styles
 *
 * Styles for agent information card display
 */

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

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

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

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

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

.agent-header .agent-license {
    color: #666;
    font-size: 14px;
}

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

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

.contact-item i,
.address-item i,
.office-phone i {
    margin-top: 3px;
    color: #28a745;
}

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

.contact-item a {
    color: #28a745;
    text-decoration: none;
}

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

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

.agent-office {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.agent-office h4 {
    margin: 0 0 15px 0;
    font-size: 18px;
    color: #333;
}

.agent-office .office-info {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
}

.agent-office .office-name {
    font-weight: 600;
    margin-bottom: 8px;
}

.agent-office .office-name a {
    color: #007bff;
    text-decoration: none;
}

.agent-office .office-name a:hover {
    text-decoration: underline;
}

.agent-office .office-phone {
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
