// ...existing code...

/* Career Page Styles */
.section-title {
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.card {
    border: none;
    border-radius: 10px;
}

.form-label {
    font-weight: 500;
    color: #555;
}

.form-control, .form-select {
    border-radius: 5px;
    padding: 0.75rem;
    border: 1px solid #ddd;
}

.form-control:focus, .form-select:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}

.btn-primary {
    padding: 0.75rem 2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
// ...existing code...
