
        :root {
            /* Requested Color Palette */
            --primary: #91C75E;
            --secondary: #7A588D;
            --background: #F5F5F5;
            --dark: #1A202C;
            --white: #FFFFFF;

            /* Tints for backgrounds */
            --primary-10: rgba(145, 199, 94, 0.1);
            --primary-20: rgba(145, 199, 94, 0.2);
            --secondary-10: rgba(122, 88, 141, 0.1);
            --secondary-20: rgba(122, 88, 141, 0.2);
        }

        body {
            background-color: var(--background);
            color: var(--dark);
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* Typography */
        .font-doodle { font-family: 'Caveat', cursive; }
        .text-primary-custom { color: var(--primary); }
        .text-secondary-custom { color: var(--secondary); }
        .text-dark-custom { color: var(--dark); }
        .bg-primary-custom { background-color: var(--primary); }
        .bg-secondary-custom { background-color: var(--secondary); }

        .leading-tight { line-height: 1.15; }
        .leading-relaxed { line-height: 1.6; }

        h1, h2, h3, h4, h5, h6 { font-weight: 800; letter-spacing: -0.02em; }

        /* Premium Doodle UI System */
        .doodle-border {
            border: 3px solid var(--dark);
            /*border-radius: 255px 15px 225px 15px/15px 225px 15px 255px;*/
        }
        .doodle-border-alt {
            border: 3px solid var(--dark);
            border-radius: 15px 225px 15px 255px/255px 15px 225px 15px;
        }
        .doodle-border-round {
            border: 3px solid var(--dark);
            border-radius: 50% 40% 60% 40% / 40% 50% 40% 60%;
        }

        .shadow-doodle { 
            /*box-shadow: 6px 6px 0px 0px var(--dark); */
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); }
        .shadow-doodle-primary { box-shadow: 6px 6px 0px 0px var(--primary); transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); }
        .shadow-doodle-secondary { box-shadow: 6px 6px 0px 0px var(--secondary); transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); }

        .hover-lift:hover {
            transform: translate(-4px, -4px);
            box-shadow: 10px 10px 0px 0px var(--dark);
        }
        .hover-lift-primary:hover {
            transform: translate(-4px, -4px);
            box-shadow: 10px 10px 0px 0px var(--primary);
        }

        .btn-doodle {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            font-weight: 700;
            font-size: 1.125rem;
            text-decoration: none;
            color: var(--dark);
            background: var(--white);
            border: 3px solid var(--dark);
            border-radius: 9999px;
            box-shadow: 4px 4px 0px 0px var(--dark);
            transition: all 0.2s ease;
            cursor: pointer;
        }
        .btn-doodle:hover {
            transform: translate(-2px, -2px);
            box-shadow: 6px 6px 0px 0px var(--dark);
            color: var(--dark);
        }
        .btn-doodle.primary { background: var(--primary); }
        .btn-doodle.secondary { background: var(--secondary); color: var(--white); }

        /* Layout Utilities & Responsiveness */
        .container-xl { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
        .py-section { padding-top: 6rem; padding-bottom: 6rem; }
        @media (max-width: 768px) {
            .py-section { padding-top: 4rem; padding-bottom: 4rem; }
            .stagger-note { margin-top: 0 !important; }
        }

        /* Animations */
        @keyframes draw { to { stroke-dashoffset: 0; } }
        .path-draw {
            stroke-dasharray: 1000;
            stroke-dashoffset: 1000;
            animation: draw 3s ease forwards;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }
        .animate-float { animation: float 6s ease-in-out infinite; }

        @keyframes pulse-soft {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.05); opacity: 0.8; }
        }
        .animate-pulse-soft { animation: pulse-soft 3s infinite; }

        @keyframes wiggle {
            0%, 100% { transform: rotate(-2deg); }
            50% { transform: rotate(2deg); }
        }
        .animate-wiggle { animation: wiggle 3s ease-in-out infinite; }

        @keyframes spin-slow {
            100% { transform: rotate(360deg); }
        }
        .animate-spin-slow { animation: spin-slow 40s linear infinite; }

        /* Scroll Reveal */
        .reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.5, 0, 0, 1); }
        .reveal.active { opacity: 1; transform: translateY(0); }
        .delay-1 { transition-delay: 0.1s; }
        .delay-2 { transition-delay: 0.2s; }
        .delay-3 { transition-delay: 0.3s; }

        /* Specific Section Styles */
        .list-doodle li {
            position: relative;
            padding-left: 2rem;
            margin-bottom: 1rem;
            font-weight: 500;
            color: #4B5563;
        }
        .list-doodle li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.25rem;
            width: 1.25rem;
            height: 1.25rem;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2391C75E' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
            background-size: contain;
            background-repeat: no-repeat;
        }

        /* Therapy Notes Redesign Styles */
        @media (min-width: 992px) {
            .stagger-note { margin-top: 5rem; }
        }
        .therapy-note {
            transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s ease;
            z-index: 1;
            border: 3px solid var(--dark);
            border-radius: 2px 255px 3px 25px / 255px 5px 225px 3px;
        }
        .therapy-note:hover {
            transform: scale(1.03) translateY(-10px) rotate(0deg) !important;
            z-index: 10;
        }
        .therapy-note.theme-shadow-primary:hover {
            box-shadow: 12px 12px 0px 0px var(--primary) !important;
        }
        .therapy-note.theme-shadow-secondary:hover {
            box-shadow: 12px 12px 0px 0px var(--secondary) !important;
        }
        .washi-tape {
            position: absolute;
            height: 35px;
            border: 2px solid var(--dark);
            box-shadow: 3px 3px 0px var(--dark);
            z-index: 5;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Caveat', cursive;
            font-weight: 700;
            font-size: 1.2rem;
            letter-spacing: 1px;
        }
        .washi-tape.tape-1 { top: -15px; left: 50%; transform: translateX(-50%) rotate(-3deg); width: 130px; background-color: var(--primary); color: var(--dark); }
        .washi-tape.tape-2 { top: -15px; right: 20px; transform: rotate(4deg); width: 110px; background-color: var(--secondary); color: var(--white); }
        .washi-tape.tape-3 { top: -15px; left: 20px; transform: rotate(-5deg); width: 120px; background-color: var(--white); color: var(--dark); }
        .washi-tape.tape-4 { top: -20px; left: 50%; transform: translateX(-50%) rotate(2deg); width: 140px; background-color: var(--primary); color: var(--dark); }

        .note-pin {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 18px;
            height: 18px;
            background: var(--dark);
            border-radius: 50%;
            box-shadow: -2px 2px 0px rgba(255,255,255,0.6);
            z-index: 2;
        }

        .list-doodle.text-white li { color: var(--white) !important; }
        .list-doodle.text-white li::before { filter: brightness(0) invert(1); }

        /* Healing Section Lists (Creative Redesign) */
        .list-healing-container {
            position: relative;
            z-index: 1;
            padding-left: 0;
            margin-bottom: 0;
        }
        .list-healing-container::before {
            content: '';
            position: absolute;
            left: 23px; /* Centers with the 34px icon + padding */
            top: 20px;
            bottom: 20px;
            width: 2px;
            border-left: 3px dashed rgba(26, 32, 44, 0.15);
            z-index: 0;
        }

        .list-healing-container li {
            background: var(--white);
            border: 2px solid var(--dark);
            border-radius: 16px;
            padding: 1rem 1.25rem;
            display: flex;
            align-items: center;
            gap: 1.25rem;
            margin-bottom: 1.25rem;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            position: relative;
            z-index: 1;
        }

        .list-healing-before li {
            box-shadow: 4px 4px 0px rgba(122, 88, 141, 0.15);
            font-weight: 600;
            color: #4B5563;
        }
        .list-healing-before li:hover {
            transform: translateX(8px) translateY(-2px);
            box-shadow: 6px 6px 0px var(--secondary);
            border-color: var(--secondary);
            color: var(--secondary);
        }
        .list-healing-before li .icon-wrapper {
            background: var(--white);
            border-radius: 50%;
            width: 34px;
            height: 34px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            border: 2px solid var(--dark);
            color: var(--secondary);
            transition: all 0.4s ease;
        }
        .list-healing-before li:hover .icon-wrapper {
            background: var(--secondary);
            color: var(--white);
            border-color: var(--secondary);
            transform: rotate(90deg);
        }

        .list-healing-after li {
            box-shadow: 4px 4px 0px rgba(145, 199, 94, 0.15);
            font-weight: 700;
            color: var(--dark);
        }
        .list-healing-after li:hover {
            transform: translateX(8px) translateY(-2px);
            box-shadow: 6px 6px 0px var(--primary);
            border-color: var(--primary);
        }
        .list-healing-after li .icon-wrapper {
            background: var(--primary-10);
            border-radius: 50%;
            width: 34px;
            height: 34px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            border: 2px solid var(--dark);
            color: var(--dark);
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        }
        .list-healing-after li:hover .icon-wrapper {
            background: var(--primary);
            border-color: var(--primary);
            transform: scale(1.15);
        }

        /* Testimonial Bubbles */
        .testimonial-bubble {
            background: var(--white);
            border: 3px solid var(--dark);
            border-radius: 20px 20px 20px 0px;
            padding: 2.5rem;
            position: relative;
            transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            z-index: 1;
        }
        .testimonial-bubble:hover {
            transform: scale(1.02) translateY(-10px);
            z-index: 10;
        }
        .testimonial-bubble.theme-shadow-primary:hover { box-shadow: 12px 12px 0px 0px var(--primary) !important; }
        .testimonial-bubble.theme-shadow-secondary:hover { box-shadow: 12px 12px 0px 0px var(--secondary) !important; }
        .bubble-center { border-radius: 20px 20px 0px 20px; }
        .bubble-right { border-radius: 20px 20px 20px 0px; }
        .quote-mark {
            font-family: 'Inter', sans-serif;
            font-size: 5rem;
            font-weight: 900;
            color: var(--secondary);
            line-height: 0;
            margin-bottom: 2.5rem;
            margin-top: 1rem;
        }
        .bubble-center .quote-mark { color: var(--primary); }
        .testimonial-author {
            margin-top: auto;
            padding-top: 1.5rem;
            border-top: 3px dashed var(--dark);
            font-family: 'Caveat', cursive;
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--dark);
        }

        /* FAQ Accordion */
        /*.faq-item {
            background: var(--white);
            margin-bottom: 1.25rem;
            border-radius: 15px 5px 15px 5px;
            position: relative;
            overflow: hidden;
            transition: box-shadow 0.3s ease;
        }
        .faq-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 8px;
            z-index: 0;
            transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .faq-item.faq-primary { border: 3px solid var(--primary); box-shadow: 4px 4px 0px 0px var(--primary); }
        .faq-item.faq-primary::before { background: var(--primary); }
        .faq-item.faq-primary:hover, .faq-item.faq-primary.is-open { box-shadow: 6px 6px 0px 0px var(--primary); }
        .faq-item.faq-primary.is-open::before { width: 100%; background: var(--primary-10); }
        .faq-item.faq-primary.is-open .faq-icon-wrapper { background: var(--primary); border-color: var(--primary); }

        .faq-item.faq-secondary { border: 3px solid var(--secondary); box-shadow: 4px 4px 0px 0px var(--secondary); }
        .faq-item.faq-secondary::before { background: var(--secondary); }
        .faq-item.faq-secondary:hover, .faq-item.faq-secondary.is-open { box-shadow: 6px 6px 0px 0px var(--secondary); }
        .faq-item.faq-secondary.is-open::before { width: 100%; background: var(--secondary-10); }
        .faq-item.faq-secondary.is-open .faq-icon-wrapper { background: var(--secondary); border-color: var(--secondary); }

        .faq-btn {
            cursor: pointer;
            width: 100%;
            text-align: left;
            background: none;
            border: none;
            padding: 1.5rem 1.5rem 1.5rem 2.5rem;
            font-weight: 700;
            font-size: 1.25rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        .faq-icon-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border: 3px solid var(--dark);
            border-radius: 50%;
            background: var(--white);
            flex-shrink: 0;
            margin-left: 1rem;
            transition: all 0.3s ease;
        }
        .faq-item.is-open .faq-icon-wrapper {
            background: var(--primary);
            border-color: var(--primary);
        }
        .faq-icon { font-size: 1.5rem; font-weight: bold; line-height: 1; color: var(--dark); transition: transform 0.3s ease; }
        .faq-item.is-open .faq-icon { transform: rotate(135deg); color: var(--white); }

        .faq-content {
            display: none;
            padding: 0.5rem 1.5rem 1.5rem 2.5rem;
            color: #4B5563;
            font-weight: 500;
            line-height: 1.6;
            position: relative;
            z-index: 1;
        }
        .faq-item.is-open .faq-content {
            display: block;
        }*/

        /* Somatic Method Cards Hover Extension */
        .somatic-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            justify-content: center;
        }
        .somatic-card-content {
            max-height: 0;
            opacity: 0;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
            margin-top: 0;
        }
        .somatic-card:hover .somatic-card-content {
            max-height: 200px;
            opacity: 1;
            margin-top: 1rem;
        }

