        /* Global Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            padding: 20px;
            background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
            color: #333;
            margin: 0;
            min-height: 100vh;
        }
        
        .container {
            max-width: 700px;
            margin: 0 auto;
            background-color: rgba(255, 255, 255, 0.95);
            border-radius: 24px;
            padding: 25px 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        h1 {
            color: white;
            text-align: center;
            margin-bottom: 20px;
            font-size: 1.8rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        h2 {
            color: #1a2a6c;
            margin-bottom: 20px;
            font-size: 1.5rem;
            text-align: center;
        }
        
        h3 {
            color: #b21f1f;
            margin: 15px 0;
            font-size: 1.2rem;
        }
        
        /* Feelings Check-in Section */
        .feelings-section {
            background-color: #f8f9fa;
            border-radius: 16px;
            padding: 20px;
            margin-bottom: 20px;
            border-left: 5px solid #1a2a6c;
        }
        
        .feelings-prompt {
            font-size: 1.2rem;
            font-weight: 600;
            color: #1a2a6c;
            margin-bottom: 20px;
        }
        
        .condition-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            padding: 12px;
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        
        .condition-item:hover {
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        
        .condition-item i {
            font-size: 1.5rem;
            margin-right: 12px;
            color: #b21f1f;
        }
        
        .condition-item label {
            flex: 1;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
        }
        
        .condition-checkbox {
            width: 22px;
            height: 22px;
            cursor: pointer;
            accent-color: #b21f1f;
        }
        
        /* Hidden Elements - Start Hidden */
        .hidden-section {
            display: none;
            opacity: 0;
            transition: opacity 1.5s ease;
        }
        
        .visible-section {
            display: block;
            opacity: 1;
        }
        
        /* Calmness Restoration Section */
        .calmness-section {
            background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
            border-radius: 16px;
            padding: 25px 20px;
            margin-bottom: 25px;
            border-left: 5px solid #2e7d32;
            text-align: center;
        }
        
        .breathing-exercise {
            background-color: white;
            padding: 20px;
            border-radius: 12px;
            margin: 15px 0;
            box-shadow: 0 4px 12px rgba(46, 125, 50, 0.1);
        }
        
        .breathing-exercise i {
            font-size: 2rem;
            color: #2e7d32;
            margin-bottom: 10px;
        }
        
        .soft-text {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #1e3a5f;
            font-style: italic;
        }
        
        .encouraging-message {
            background-color: #fff3e0;
            padding: 15px;
            border-radius: 12px;
            margin: 15px 0;
            font-size: 1.1rem;
            color: #bf360c;
            border-left: 5px solid #ff9800;
        }
        
        .prompt-message {
            font-size: 1.2rem;
            font-weight: bold;
            color: #1a2a6c;
            margin: 20px 0 15px;
        }
        
        /* Options Buttons */
        .options-container {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin: 20px 0;
        }
        
        @media (min-width: 480px) {
            .options-container {
                flex-direction: row;
                justify-content: center;
            }
        }
        
        .option-btn {
            padding: 14px 28px;
            font-size: 1.1rem;
            font-weight: bold;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .option-yes {
            background-color: #2e7d32;
            color: white;
        }
        
        .option-yes:hover {
            background-color: #1b5e20;
            transform: scale(1.02);
        }
        
        .option-no {
            background-color: #c62828;
            color: white;
        }
        
        .option-no:hover {
            background-color: #b71c1c;
            transform: scale(1.02);
        }
        
        /* Reminder Section */
        .reminder-section {
            text-align: center;
            padding: 20px;
            background: linear-gradient(135deg, #e3f2fd, #bbdefb);
            border-radius: 16px;
            margin-bottom: 25px;
        }
        
        .reminder-heading {
            color: #0d47a1;
            font-size: 1.5rem;
            margin-bottom: 10px;
        }
        
        .subheading {
            color: #1565c0;
            font-size: 1.1rem;
            margin-bottom: 20px;
        }
		
		/* Quiz Proceed Button */
        #quizProceedBtn {
            display: none;
            opacity: 0;
            transition: opacity 1.2s ease;
            margin: 30px auto;
        }
        
        /* Condition 2 Proceed Button */
        #condition2ProceedBtn {
            display: none;
            opacity: 0;
            transition: opacity 1.2s ease;
            margin: 20px auto;
            background-color: #0288d1;
        }
        
        #condition2ProceedBtn:hover {
            background-color: #01579b;
        }
        
        .proceed-btn {
            background-color: #1565c0;
            color: white;
            padding: 14px 32px;
            font-size: 1.1rem;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        
        .proceed-btn:hover {
            background-color: #0d47a1;
            transform: scale(1.02);
        }
        
        /* Quiz Container */
        .quiz-container {
            margin-top: 30px;
        }
        
        /* Quiz Styles (Integrated from provided code) */
        .question {
            display: none;
            opacity: 0;
            transition: opacity 1.5s ease;
            margin-bottom: 25px;
            background-color: #ffffff;
            border: 1px solid #d0d7de;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            border-radius: 16px;
            padding: 20px;
            max-width: 100%;
            box-sizing: border-box;
        }
        
        .question p {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #1a2a6c;
        }
        
        .question label {
            display: block;
            margin-bottom: 12px;
            font-size: 1rem;
            cursor: pointer;
            padding: 8px;
            border-radius: 8px;
            transition: background-color 0.2s ease;
        }
        
        .question label:hover {
            background-color: #f0f4f8;
        }
        
        .feedback {
            margin-top: 15px;
            padding: 10px;
            font-weight: bold;
            font-size: 0.95rem;
            border-radius: 8px;
            background-color: #f8f9fa;
        }
        
        /* Completion UI */
        .completion-section {
            text-align: center;
            padding: 30px 20px;
            background: linear-gradient(135deg, #a5d6a5, #81c784);
            border-radius: 16px;
            margin-top: 25px;
        }
        
        .completion-icon {
            font-size: 3rem;
            color: #1b5e20;
            margin-bottom: 15px;
        }
        
        .completion-text {
            font-size: 1.5rem;
            font-weight: bold;
            color: #1b5e20;
            margin-bottom: 25px;
        }
        
        .action-buttons {
            display: flex;
            flex-direction: column;
            gap: 15px;
            justify-content: center;
        }
        
        @media (min-width: 480px) {
            .action-buttons {
                flex-direction: row;
            }
        }
        
        .done-btn, .again-btn {
            padding: 14px 28px;
            font-size: 1.1rem;
            font-weight: bold;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .done-btn {
            background-color: #1a2a6c;
            color: white;
            text-decoration: none;
        }
        
        .again-btn {
            background-color: #b21f1f;
            color: white;
        }
        
        .done-btn:hover, .again-btn:hover {
            transform: scale(1.02);
            opacity: 0.9;
        }
        
        /* Progress Bar */
        #progress-bar-container {
            height: 10px;
            background: #ddd;
            border-radius: 5px;
            overflow: hidden;
            margin-bottom: 30px;
        }
        
        #progress-bar {
            height: 100%;
            width: 0%;
            background: linear-gradient(to right, #43cea2, #185a9d);
            transition: width 0.5s ease;
        }
        
        /* Score Styles */
        #score-summary, #score-remark {
            opacity: 0;
            transition: opacity 1.2s ease;
            text-align: center;
            font-size: 1.2rem;
            font-weight: bold;
            margin-top: 20px;
        }
        
        .fa-bolt {
            color: gold;
        }
        
        /* Utility Classes */
        .text-center {
            text-align: center;
        }
        
        .mt-4 {
            margin-top: 25px;
        }
        
        .mb-3 {
            margin-bottom: 15px;
        }
        
        /* Hide elements */
        .hide {
            display: none;
        }
        
        /* Condition 2 Message */
        .condition2-message {
            background-color: #e1f5fe;
            border-radius: 12px;
            padding: 15px;
            margin: 15px 0;
            text-align: center;
            border-left: 5px solid #0288d1;
        }