/* Custom CSS */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-light); 
    color: var(--text-dark);
}

.hero-bg {
    box-shadow: 0 10px 30px rgba(96, 174, 57, 0.3);
}

.feature-box {
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

/* Questionnaire Styles */
.question-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    overflow: hidden;
    animation: fadeIn 0.4s ease-out;
}

.question-header {
    background-color: white;
    padding: 30px 40px;
    border-bottom: 1px solid #eee;
}

.question-body {
    padding: 30px 40px;
}

.question-footer {
    padding: 20px 40px;
    background-color: #f8f9fa;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: flex-end;
}

.form-check-option {
    border: 2px solid #eee;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.2s;
}

.form-check-option:hover {
    border-color: var(--primary-light);
    background-color: #fdfdfd;
}

.form-check-option.selected {
    border-color: var(--primary-color);
    background-color: #f0f9eb;
}

.form-check-input:checked + label {
    color: var(--primary-color);
    font-weight: 600;
}

.progress {
    height: 10px;
    border-radius: 5px;
    background-color: #e9ecef;
}

.progress-bar {
    background-color: var(--primary-color);
}

/* Anim */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Results */
.likelihood-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-high { background-color: #dc3545; color: white; }
.badge-moderate { background-color: #ffc107; color: #333; }
.badge-low { background-color: #198754; color: white; }
