/* contact page styles - Extracted from inline style */

.contact-form-wrapper {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
}
.contact-form-wrapper h3 {
    margin-bottom: 30px;
    color: var(--text-dark);
}
.contact-info-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 20px;
    padding: 40px 30px;
    color: var(--white);
}
.contact-info-card h4 {
    color: var(--white);
    margin-bottom: 30px;
}
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}
.info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.info-item i {
    font-size: 1.5rem;
    opacity: 0.9;
}
.info-label {
    display: block;
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 5px;
}
.info-value {
    display: block;
    font-weight: 600;
    font-size: 1.1rem;
}