
        body {
            font-family: 'Fredoka', sans-serif;
            background-color: #F7FFF7;
        }

        .page {
            display: none;
        }
        .page.active {
            display: block;
        }
        .text-coral { color: #FF6B6B; }
        .bg-coral { background-color: #FF6B6B; }
        .text-teal { color: #4ECDC4; }
        .bg-teal { background-color: #4ECDC4; }
        .text-yellow { color: #FFE66D; }
        .bg-yellow { background-color: #FFE66D; }
        .bg-off-white { background-color: #F7FFF7; }
        
        /* Custom shadows and animations */
        .btn-shadow {
            box-shadow: 0px 8px 0px rgba(0, 0, 0, 0.1);
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .btn-shadow:active {
            transform: translateY(4px);
            box-shadow: 0px 4px 0px rgba(0, 0, 0, 0.1);
        }

        .hover-lift:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        }

        .card-shadow {
            box-shadow: 10px 10px 0px rgba(0,0,0,0.1);
        }

        .faq-question {
            cursor: pointer;
            user-select: none;
            transition: background-color 0.2s;
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-in-out;
        }
        .faq-question.active + .faq-answer {
            max-height: 200px; /* Adjust as needed */
        }
