#successMessage {
    background-color: #366ab5 !important;
    color: white !important;
    font-size: 18px !important;
    margin-bottom: 30px;
    text-align: center;
}
    
.content-section {
    padding: 60px 0;
}
    
.contact-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
    
.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}
    
.contact-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}
    
.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 15px;
}
    
.contact-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}
    
.contact-card a:hover {
    text-decoration: underline;
}
    
.form-section {
    background-color: var(--light-gray);
}
    
.form-container {
    background: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}
    
.form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
}
    
.form-control, .form-select {
    border: 2px solid #e5e7eb;
    padding: 12px 15px;
    border-radius: 5px;
    transition: border-color 0.3s ease;
}
    
.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(196, 30, 58, 0.15);
}
    
.btn-submit {
    background-color: var(--primary-color);
    color: white;
    padding: 14px 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}
    
.btn-submit:hover {
    background-color: #a01829;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(196, 30, 58, 0.4);
}
    
.btn-submit:disabled {
    background-color: #9ca3af;
    cursor: not-allowed;
    transform: none;
}
    
.alert-success {
    background-color: var(--success-color);
    color: white;
    border: none;
    border-radius: 5px;
}
    
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}
    
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    left: 50%;
    transform: translateX(-50%);
}
    
.info-box {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(196, 30, 58, 0.05) 100%);
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid var(--primary-color);
    margin-bottom: 40px;
}
    
@media (max-width: 768px) {
        
    .form-container {
        padding: 30px 20px;
    }
        
    .contact-card {
        margin-bottom: 20px;
    }
}