        :root {
            --primary: #6C63FF;
            --secondary: #4D44DB;
            --accent: #FF6584;
            --light: #F8F9FA;
            --dark: #2D3748;
            --gray: #718096;
            --success: #48BB78;
        }
        
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }
        
        body {
            background-color: #F7FAFC;
            color: var(--dark);
            line-height: 1.6;
        }
        
        .container {
            max-width: 800px;
            margin: 0 auto;
            padding: 2rem 1rem;
        }
        
        header {
            text-align: center;
            margin-bottom: 2.5rem;
        }
        
        .logo {
            color: var(--primary);
            font-weight: 700;
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
        }
        
        .tagline {
            color: var(--gray);
            font-size: 1.1rem;
        }
        
        .progress-bar {
            height: 6px;
            background: #EDF2F7;
            border-radius: 3px;
            margin: 1.5rem 0;
            overflow: hidden;
        }
        
        .progress {
            height: 100%;
            background: #4ac920 !important;
            width: 20%;
            transition: width 0.3s ease;
        }
        
        .form-section {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            margin-bottom: 1.5rem;
        }
        
        .section-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: var(--dark);
            display: flex;
            align-items: center;
        }
        
        .section-title .icon {
            margin-right: 0.8rem;
            color: var(--primary);
        }
        
        .question {
            margin-bottom: 2rem;
        }
        
        .question-title {
            font-weight: 600;
            margin-bottom: 0.8rem;
            font-size: 21px;
        }
        
        .question-hint {
            font-size: 0.9rem;
            color: var(--gray);
            margin-bottom: 1rem;
        }
        
        .options-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 0.8rem;
        }
        
        .option-card {
            border: 1px solid #E2E8F0;
            border-radius: 8px;
            padding: 1.2rem;
            cursor: pointer;
            transition: all 0.2s ease;
            box-shadow: 0px 1px 2px 0px #4ac96fc4;
        }
        .box-text {
            text-align: center;
            font-size: 18px;
        }
        .box-sub-text {
            font-size: 16px;
            color: var(--gray);
            text-align: center;
        }
        
        .option-card:hover {
            border-color: var(--primary);
            box-shadow: 0 2px 8px rgba(108, 99, 255, 0.1);
        }
        
        .option-card.selected {
            border-color: var(--primary);
            background-color: #F0F3FF;
        }
        
        .option-card input {
            display: none;
        }
        
        .text-input {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid #E2E8F0;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.2s ease;
        }
        
        .text-input:focus {
            outline: none;
            border-color: var(--primary);
        }
        
        .checkbox-option {
            display: flex;
            align-items: center;
            margin-bottom: 0.8rem;
            padding: 0.8rem;
            border-radius: 8px;
            cursor: pointer;
        }
        
        .checkbox-option:hover {
            background: #F8FAFC;
        }
        
        .checkbox-option input {
            margin-right: 0.8rem;
        }
        
        .btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
            width: 100%;
        }
        
        .btn:hover {
            background: var(--secondary);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(108, 99, 255, 0.2);
        }
        
        .btn-secondary {
            background: white;
            color: var(--primary);
            border: 1px solid var(--primary);
        }
        
        .btn-secondary:hover {
            background: #F0F3FF;
        }
        
        .navigation {
            display: flex;
            justify-content: flex-end;
            margin-top: 2rem;
        }
        
        @media (max-width: 600px) {
            .options-grid {
                grid-template-columns: 1fr;
            }
            
            .container {
                padding: 1.5rem 1rem;
            }
            
            .form-section {
                padding: 1.5rem;
            }
        }
        button#next-btn {
            WIDTH: 12%;
            align-items: center;
            text-align: center;
            justify-content: center;
            background-color: #4ac920;
            color: #fff;
            font-size: 20px;
            font-weight: 800;
            margin: 0px 5px;
            padding: 10px 10px;
        }
        button#prev-btn {
            WIDTH: 16%;
            align-items: center;
            text-align: center;
            justify-content: center;
            background-color: #4ac920;
            color: #fff;
            font-size: 20px;
            font-weight: 800;
            margin: 0px 5px;
            padding: 10px 10px;
}
button#submit-btn {
            WIDTH: 16%;
            align-items: center;
            text-align: center;
            justify-content: center;
            background-color: #4ac920;
            color: #fff;
            font-size: 16px;
            font-weight: 800;
            margin: 0px 5px;
            padding: 10px 10px;
}