        :root {
            --forest-teal: #0F766E;
            --sage-green: #ECFDF5;
            --sand-beige: #F5F5F4;
            --charcoal: #1F2937;
            --leaf-accent: #22C55E;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--sage-green);
            color: var(--charcoal);
            overflow-x: hidden;
        }

        h1, h2, h3 { font-family: 'DM Serif Display', serif; }
        .font-manrope { font-family: 'Manrope', sans-serif; }

        .btn-wellness {
            background-color: var(--forest-teal);
            color: white;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            border-radius: 9999px;
            font-family: 'Manrope', sans-serif;
            font-weight: 600;
        }

        .btn-wellness:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(15, 118, 110, 0.15);
            filter: brightness(115%);
        }

        .glass-card {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.4);
            border-radius: 32px;
        }

        .modal-overlay {
            background: rgba(15, 118, 110, 0.2);
            backdrop-filter: blur(8px);
        }

        .fade-in { animation: fadeIn 0.8s ease-out forwards; }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .page-transition {
            animation: pageIn 0.5s ease-out forwards;
        }
        @keyframes pageIn {
            from { opacity: 0; transform: scale(0.98); }
            to { opacity: 1; transform: scale(1); }
        }

        .botanical-bg {
            background-image: url("https://www.transparenttextures.com/patterns/leaf.png");
            opacity: 0.04;
        }

        .nav-link {
            position: relative;
            transition: color 0.3s ease;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -4px;
            left: 0;
            background-color: var(--forest-teal);
            transition: width 0.3s ease;
        }
        .nav-link:hover::after { width: 100%; }

        .lookbook-item:hover img { transform: scale(1.08); transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1); }

        /* FAQ Accordion Styling */
        .faq-item {
            border-bottom: 1px solid rgba(15, 118, 110, 0.1);
        }
        .faq-trigger:hover {
            color: var(--forest-teal);
        }
    