.contact_header {
    background: linear-gradient(135deg, #0174C4 0%, #0a6cb0 100%);
    color: white;
    padding: 60px 0 40px 0;
    margin-bottom: 50px;
}

.contact_header h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact_info_card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    height: 100%;
}

.contact_info_card i {
    font-size: 36px;
    color: #0174C4;
    margin-bottom: 20px;
}

.contact_info_card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact_form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.btn-submit {
    background: #0174C4;
    color: white;
    padding: 12px 40px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #0a6cb0;
    transform: scale(1.05);
}

.alert {
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.map_container {
    margin-top: 50px;
    margin-bottom: 50px;
}

.map_container iframe {
    width: 100%;
    height: 450px;
    border-radius: 10px;
    border: none;
}