.contact-page {
    margin: 3rem auto;
    max-width: 1200px;
}

.contact-info {
    margin-bottom: 2rem;
    padding-left: 3rem;
}

.contact-form {
    margin-bottom: 2rem;
}

.form-container {
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.form-container h2 {
    color: #041543;
    margin-bottom: 1.8rem;
    font-weight: 600;
    font-size: 1.8rem;
    border-bottom: 2px solid #7197ee;
    padding-bottom: 0.8rem;
    display: inline-block;
}

.form-control {
    padding: 0.8rem;
    border: 1px solid #ced4da;
    border-radius: 6px;
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.form-control:focus {
    border-color: #7197ee;
    box-shadow: 0 0 0 0.25rem rgba(113, 151, 238, 0.25);
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #343a40;
}

.btn-primary {
    background-color: #041543;
    border-color: #041543;
    padding: 0.6rem 1.5rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s ease-in-out;
}

.btn-primary:hover {
    background-color: #7197ee;
    border-color: #7197ee;
    transform: translateY(-2px);
}

.text-danger {
    font-size: 0.875rem;
    margin-top: 0.3rem;
    display: block;
}

/* Contact info styling */
.contact-info h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #041543;
    margin-bottom: 1.5rem;
}

.contact-info h2 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #041543;
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #7197ee;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-info a {
    color: #7197ee;
    text-decoration: none;
}

.contact-info a:hover {
    color: #041543;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .contact-page .row {
        flex-direction: column-reverse;
    }
    
    .contact-info {
        padding-left: 1rem;
    }
} 