        :root {
            --coral: #FF6868;
            --mint: #E8FFCE;
            --white: #FFFFFF;
        }

        body {
            font-family: 'Old Standard TT', serif;
            background-color: var(--white);
            color: var(--coral);
            line-height: 1.8;
            overflow-x: hidden;
        }

        /* Header Transitions */
        header {
            position: fixed;
            top: 40px;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 0 5%;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        header.hidden-nav {
            transform: translateY(-120%);
            opacity: 0;
        }


        /* Dropdown Styles - WITH SCROLL */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    position: absolute;
    top: 35px;
    left: 0;
    background: white;
    min-width: 300px;
    max-height: 500px;  /* Maximum height before scrolling */
    overflow-y: auto;    /* Enables vertical scrolling */
    box-shadow: 0 20px 35px rgba(0,0,0,0.12);
    border-radius: 20px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    border: 1px solid rgba(255,104,104,0.2);
    z-index: 1200;
}

/* Custom scrollbar styling (optional but looks better) */
.dropdown-content::-webkit-scrollbar {
    width: 6px;
}

.dropdown-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.dropdown-content::-webkit-scrollbar-thumb {
    background: #FF6868;
    border-radius: 10px;
}

.dropdown-content::-webkit-scrollbar-thumb:hover {
    background: #e05555;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-group {
    padding: 6px 0;
}

.dropdown-group:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-group-title {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 18px 4px;
    color: #FF6868;
    opacity: 0.75;
    position: sticky;
    top: 0;
    background: white;
    z-index: 1;
}

.dropdown-item {
    padding: 8px 18px;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 13px;
    font-weight: 500;
    color: #2A2F35;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dropdown-item.with-image img {
    width: 24px;
    height: 24px;
    object-fit: cover;
    border-radius: 50%;
}

.dropdown-item:hover {
    background-color: #E8FFCE;
}
/* Subpage Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Subpage Styles */
.subpage {
    min-height: 100vh;
    background: #fefaf7;
}

.subpage-hero {
    min-height: 50vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.subpage-hero-content {
    animation: scaleIn 0.8s ease-out;
}

.subpage-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.subpage-subtitle {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.95);
    font-style: italic;
    margin-bottom: 2rem;
}

.subpage-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.subpage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.subpage-description {
    animation: slideInLeft 0.6s ease-out;
}

.subpage-description h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #FF6868;
    margin-bottom: 1.5rem;
}

.subpage-description p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 2rem;
}

.subpage-card {
    background: white;
    padding: 2rem;
    border-radius: 28px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border: 1px solid rgba(255,104,104,0.15);
    animation: slideInRight 0.6s ease-out;
}

.subpage-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #FF6868;
    margin-bottom: 1.5rem;
}

.symptom-list {
    list-style: none;
    padding: 0;
}

.symptom-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1rem;
}

.symptom-marker {
    width: 8px;
    height: 8px;
    background: #FF6868;
    border-radius: 50%;
    display: inline-block;
}

.subpage-treatments {
    margin-bottom: 4rem;
    animation: fadeInUp 0.7s ease-out;
}

.subpage-treatments h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #FF6868;
    margin-bottom: 2rem;
    text-align: center;
}

.treatments-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.treatment-chip {
    background: #E8FFCE;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: default;
}

.treatment-chip:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255,104,104,0.2);
}

.chip-icon {
    color: #FF6868;
    font-weight: bold;
}

.subpage-quote {
    background: linear-gradient(135deg, #FF6868 0%, #E8FFCE 100%);
    padding: 3rem;
    border-radius: 32px;
    text-align: center;
    margin-bottom: 3rem;
    animation: scaleIn 0.8s ease-out;
}

.subpage-quote p {
    font-size: 1.5rem;
    font-style: italic;
    color: white;
    margin-bottom: 1rem;
}

.subpage-quote span {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

.subpage-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease-out;
}

.btn-outline {
    background: transparent;
    border: 2px solid #FF6868;
    color: #FF6868;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: #FF6868;
    color: white;
}

.btn-secondary {
    background: transparent;
    border: 2px solid #ccc;
    color: #666;
    padding: 14px 38px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    border-color: #FF6868;
    color: #FF6868;
}

/* Hover animation for dropdown items */
.dropdown-item {
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
    .subpage-title {
        font-size: 2.5rem;
    }
    
    .subpage-subtitle {
        font-size: 1.1rem;
    }
    
    .subpage-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .subpage-container {
        padding: 2rem 1.5rem;
    }
    
    .subpage-quote p {
        font-size: 1.1rem;
    }
    
    .treatment-chip {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}


        /* Pill Navigation Box */
        .pill-container {
            background: var(--white);
            padding: 8px 30px;
            border-radius: 100px;
            box-shadow: 0 10px 40px rgba(255, 104, 104, 0.08);
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .pill-link {
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
            transition: all 0.3s;
            cursor: pointer;
        }

        .pill-link:hover {
            font-style: italic;
            opacity: 0.7;
        }

        /* Logo Circle */
        .logo-circle {
            width: 155px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 40px rgba(255, 104, 104, 0.1);
            font-weight: 700;
                        padding: 15px 40px;
            border-radius: 50px;

            font-size: 1.1rem;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .logo-circle:hover {
            transform: scale(1.05);
        }

        /* Additional styles for longer content */
.subpage-long-description {
    margin: 4rem 0;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 24px;
    animation: fadeInUp 0.8s ease-out;
}

.subpage-long-description h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FF6868;
    margin-bottom: 1.5rem;
    text-align: center;
}

.long-description-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.subpage-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
    animation: scaleIn 0.6s ease-out;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #fef5f5 100%);
    border-radius: 20px;
    border: 1px solid rgba(255,104,104,0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FF6868;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
}

.subpage-grid {
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .subpage-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .subpage-long-description {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .subpage-long-description h2 {
        font-size: 1.4rem;
    }
    
    .long-description-content p {
        font-size: 1rem;
    }
}

        /* Hero Animation */
        .hero-section {
            height: 100vh;
            background: linear-gradient(rgba(231, 225, 225, 0.2), rgba(249, 245, 245, 0.2)), 
                        url('https://i.pinimg.com/736x/12/ed/e0/12ede05769c5bef64443dcdcf30139d9.jpg') center/cover no-repeat;
            display: flex;
            background-color: #E8FFCE;
            align-items: center;
            padding-left: 10%;
            animation: bg-pulse 20s infinite alternate;
        }

        @keyframes bg-pulse {
            from { background-scale: 1; }
            to { background-scale: 1.1; }
        }

        .hero-card {
            background: var(--white);
            padding: 60px;
            max-width: 600px;
            height:90vh;
            border-radius: 12px;
            box-shadow: 0 40px 100px rgba(0,0,0,0.06);
            animation: slideInLeft 1.2s ease-out;
        }

        @keyframes slideInLeft {
            from { transform: translateX(-50px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        /* Fixed Background Parallax */
        .parallax-window {
            height: 85vh;
            background-image: url('https://i.pinimg.com/736x/7f/2c/92/7f2c92dc95741e17d2e0156f35bd0558.jpg');
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }

        /* Button Styling */
        .btn-coral {
            background: var(--coral);
            color: white;
            padding: 16px 40px;
            border-radius: 50px;
            font-weight: 700;
            display: inline-block;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .btn-coral:hover {
            transform: scale(1.03);
            box-shadow: 0 10px 25px rgba(255, 104, 104, 0.3);
        }

        /* Treatments Grid */
        .treatment-card {
            background: var(--white);
            border: 1px solid var(--coral);
            padding: 45px;
            transition: all 0.4s ease;
            cursor: pointer;
        }

        .treatment-card:hover {
            background-color: var(--mint);
            transform: translateY(-8px);
        }

        /* Menu from top modal */
        #menu-box {
            position: fixed;
            left: 50%;
            transform: translateX(-50%) translateY(-200%);
            background: white;
            padding: 15px 40px;
            border-radius: 50px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            z-index: 2000;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        #menu-box.open {
            transform: translateX(-50%) translateY(0);
        }

        .page { display: none; }
        .page.active { display: block; }

        /* Modal */
        #guide-modal {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(8px);
        }
