.form-card {
    background-color: #FFF4E7;
    border: none;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(132, 3, 16, 0.15);
    transition: box-shadow 0.3s ease;
}

.form-card:hover {
    box-shadow: 0 8px 25px rgba(132, 3, 16, 0.25);
}

.card-header {
    background-color: #840310;
    border: none;
    border-radius: 10px 10px 0 0;
    border-bottom: 2px solid #D10531;
}

.card-header h2 {
    color: white !important;
    font-size: 1.5rem !important;
    font-weight: 600 !important;
}

.section-title {
    color: #840310;
    font-weight: 600;
    font-size: 1.1em;
    border-bottom: 2px solid #D10531;
    padding-bottom: 6px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control:focus, .form-select:focus {
    border-color: #840310;
    box-shadow: 0 0 0 0.2rem rgba(209, 5, 49, 0.25);
    background: white !important;
    transform: translateY(-1px);
    transition: all 0.3s ease;
}

.form-control, .form-select {
    border: 2px solid #D10531;
    background: #FFF4E7 !important;
    color: #333 !important;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control:hover, .form-select:hover {
    border-color: #840310;
}

.btn-custom {
    background-color: #D10531;
    border: none;
    color: #FFF4E7;
    font-weight: 600;
    padding: 15px 50px;
    border-radius: 25px;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(209, 5, 49, 0.3);
}

.btn-custom:hover {
    background-color: #840310;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(132, 3, 16, 0.4);
    color: #FFF4E7;
}

.form-check-input:checked {
    background-color: #D10531;
    border-color: #D10531;
}

.form-check-label.highlight {
    color: #840310;
    font-weight: 600;
    font-size: 1.05em;
}

.checkbox-grid {
    background-color: #fff;
    border: 2px solid #D10531;
    border-radius: 8px;
    padding: 20px;
    margin-top: 10px;
}

.form-check {
    margin-bottom: 8px;
}

.form-check-input {
    border: 2px solid #D10531;
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(209, 5, 49, 0.25);
}