.quote-form {
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 2.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.brand-red { color: #D51C0B; }

.btn-brand {
    background-color: #D51C0B;
    border: none;
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-brand:hover { transform: translateY(-2px); }

.form-control, .form-select {
    border: 2px solid #1212129e !important;
    padding: 12px 16px !important;
}

.form-control:focus, .form-select:focus {
    border-color: #D51C0B;
    box-shadow: 0 0 0 0.2rem rgba(213, 28, 11, 0.25);
}

.total-display {
    background-color: #f8f9fa;
    border: 2px solid #D51C0B;
    padding: 1.5rem;
    text-align: center;
    margin-top: 2rem;
}

.form-label, .form-check-label {
    font-weight: 600;
    color: #3c3531 !important;
}

.radio-container {
    display: flex;
    justify-content: space-evenly;
}

.form-check-input[type=radio] {
    border-color: #3b3b3b;
}

@media (max-width: 768px) {
    .quote-form {
    padding: 1.5rem;
    }
}