/* Contact Page Specific Styles */
#contact-page {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.contact-info-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}

.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.form-label {
    font-weight: 600;
    color: #37474f;
}

.btn-submit {
    background-color: #009fe8;
    color: #fff;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: bold;
    border: none;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #007bb5;
    color: #fff;
    transform: translateY(-2px);
}

.alert {
    border-radius: 8px;
    margin-bottom: 25px;
}
