.hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 2rem 0;
        }

        .brand-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-teal);
            text-decoration: none;
            margin-bottom: 2rem;
            display: inline-block;
        }

        .progress-indicator {
            display: flex;
            align-items: center;
            margin-bottom: 2rem;
            font-size: 0.9rem;
            color: var(--text-light);
        }

        .progress-step {
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: #e5e7eb;
            margin: 0 4px;
        }

        .progress-step.active {
            background: linear-gradient(to right, #15395e 42%, #18A6B4 50%);
        }

        .question-card {
            background: white;
            border-radius: 16px;
            padding: 2.5rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border: none;
            margin-bottom: 2rem;
        }

        .question-title {
            font-size: 1.75rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }

        .answer-option {
            background: white;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            padding: 1.25rem 1.5rem;
            margin-bottom: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            text-align: left;
            width: 100%;
            font-size: 1rem;
            color: var(--text-dark);
        }

        .answer-option:hover {
            border-color: #18a6b4;
            background: #d2ebed;
            transform: translateY(-2px);
        }

        .answer-option.selected {
            border-color: #18a6b4;
            background: #18a6b4;
            color: white;
            font-weight: 500;
        }

        .answer-option .option-icon {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            border: 2px solid #d1d5db;
            margin-right: 1rem;
            flex-shrink: 0;
            position: relative;
        }

        .answer-option.selected .option-icon {
            border-color: white;
            background: white;
        }

        .answer-option.selected .option-icon::after {
            content: '✓';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: var(--primary-teal);
            font-size: 12px;
            font-weight: bold;
        }

        .continue-btn {
            background: #18A6B4;
            border: none;
            border-radius: 12px;
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            margin-top: 1.5rem;
        }

        .continue-btn:hover {
            transform: translateY(-2px);
             background: #15395e;
        }

        .continue-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        .illustration {
            text-align: center;
            margin-bottom: 2rem;
        }

        .illustration-icon {
            width: 120px;
            height: 120px;
            background: #15395e;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: white;
            margin-bottom: 1rem;
        }

        .step-counter {
            font-size: 0.9rem;
            color: var(--text-light);
            margin-bottom: 0.5rem;
        }

        .about-section {
            text-align: center;
        }

        .about-section h2 {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--text-dark);
        }

        .about-section p {
            font-size: 1.1rem;
            color: var(--text-light);
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        /* Results Section */
        .results-section {
            text-align: left;
        }

        .results-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 2rem;
            text-align: center;
        }

        .meter-container {
            margin: 2rem 0;
        }

        .meter-bar {
            width: 100%;
            height: 40px;
            background: #f3f4f6;
            border-radius: 20px;
            position: relative;
            overflow: hidden;
            margin-bottom: 1rem;
        }

        .meter-segments {
            display: flex;
            height: 100%;
            border-radius: 20px;
            overflow: hidden;
        }

        .meter-segment {
            height: 100%;
            transition: all 0.3s ease;
        }

        .segment-normal {
            background: var(--green);
            width: 19.05%; /* 4/21 */
        }

        .segment-mild {
            background: var(--yellow);
            width: 23.81%; /* 5/21 */
        }

        .segment-moderate {
            background: var(--orange);
            width: 23.81%; /* 5/21 */
        }

        .segment-severe {
            background: var(--red);
            width: 33.33%; /* 7/21 */
        }

        .meter-labels {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .meter-label {
            text-align: center;
            color: var(--text-dark);
        }

        .meter-label.normal { color: var(--green); }
        .meter-label.mild { color: var(--yellow); }
        .meter-label.moderate { color: var(--orange); }
        .meter-label.severe { color: var(--red); }

        .meter-ranges {
            display: flex;
            justify-content: space-between;
            font-size: 0.8rem;
            color: var(--text-light);
            margin-bottom: 2rem;
        }

        .score-indicator {
            position: absolute;
            top: -10px;
            width: 20px;
            height: 60px;
            background: var(--text-dark);
            border-radius: 10px;
            transition: left 2s ease-in-out;
            z-index: 10;
        }

        .score-indicator::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-top: 8px solid var(--text-dark);
        }

        .score-display {
            text-align: center;
            margin: 2rem 0;
        }

        .score-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }

        .score-text {
            font-size: 1.2rem;
            color: var(--text-light);
            margin-bottom: 1rem;
        }

        .current-level {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            border-radius: 25px;
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }

        .level-normal {
            background: rgba(34, 197, 94, 0.15);
            color: var(--green);
            border: 2px solid var(--green);
        }

        .level-mild {
            background: rgba(234, 179, 8, 0.15);
            color: #b45309;
            border: 2px solid var(--yellow);
        }

        .level-moderate {
            background: rgba(249, 115, 22, 0.15);
            color: #c2410c;
            border: 2px solid var(--orange);
        }

        .level-severe {
            background: rgba(239, 68, 68, 0.15);
            color: var(--red);
            border: 2px solid var(--red);
        }

        .result-message {
            background: #f8fafc;
            border-radius: 12px;
            padding: 1.5rem;
            margin: 2rem 0;
        }

        .result-message p {
            color: var(--text-light);
            margin-bottom: 0;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            .question-card {
                padding: 2rem 1.5rem;
            }
            
            .question-title {
                font-size: 1.5rem;
            }
            
            .answer-option {
                padding: 1rem 1.25rem;
            }

            .score-number {
                font-size: 2.5rem;
            }
        }
        .logo{text-transform: uppercase;font-size: 50px;font-weight: bold;background: linear-gradient(to right, #15395E 42%, #18A6B4 50%);-webkit-background-clip: text;-webkit-text-fill-color: transparent;}