body {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: linear-gradient(to bottom, rgb(255 255 255 / 0%), rgb(4 3 2 / 53%)), url(../images/windowBK.jpg);
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}
.quote-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    max-width: 800px;
    margin: 2rem auto;
}
.progress-container {
    background: #f8f9fa;
    padding: 1.5rem;
    border-bottom: 1px solid #dee2e6;
}
.progress {
    height: 8px;
    border-radius: 10px;
}
.progress-bar {
    background: linear-gradient(45deg, #76c4bd, #76c4bd);
    border-radius: 10px;
    transition: width 0.3s ease;
}
.form-container {
    padding: 3rem;
}
.step {
    display: none;
}
.step.active {
    display: block;
    animation: fadeIn 0.3s ease-in;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}
.step-title {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}
.option-card {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
}
.option-card:hover {
    border-color: #76c4bd;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}
.option-card.selected {
    border-color: #76c4bd;
    background: linear-gradient(135deg, #667eea05, #764ba205);
}
.option-card i {
    color: #76c4bd;
    font-size: 1.5rem;
    margin-right: 1rem;
}
.btn-primary {
    background: linear-gradient(45deg, #76c4bd, #76c4bd);
    border: none;
    padding: 12px 2rem;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}
.btn-secondary {
    background: #6c757d;
    border: none;
    padding: 12px 2rem;
    border-radius: 25px;
    font-weight: 600;
}
.form-control {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
}
.form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}
.text-danger {
    color: #e74c3c !important;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}
.hero-text {
    text-align: center;
    margin-bottom: 2rem;
}
.hero-text h2 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.hero-text p {
    color: #6c757d;
    font-size: 1.1rem;
}
.loading {
    display: none;
}
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.main-content{
    flex: 1; /* Pushes footer down */
    display: flex;
    justify-content: center; /* Optional: center form horizontally */
    align-items: center;     /* Optional: center form vertically */
    min-height: 78vh;
}
