     /* Navigation styling for both desktop and mobile */
     nav {
        position: relative;
        padding: 0;
        margin-top: 10px; /* Increased from -15px to 10px for more space */
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    /* Desktop navigation bar */
    .desktop-nav {
        display: flex;
        justify-content: center;
        background-color: rgba(255, 245, 250, 0.95);
        padding: 0.8rem 0;
        border-radius: 15px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        margin: 0 auto;
        max-width: 800px;
        border: 2px solid #f8a5c2;
    }
    
    .desktop-nav ul {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    
    .desktop-nav li {
        margin: 0 1.5rem;
    }
    
    .desktop-nav a {
        text-decoration: none;
        color: #e66a93;
        font-weight: bold;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        padding: 0.5rem 1rem;
        border-radius: 8px;
    }
    
    .desktop-nav a:hover {
        background-color: #ffeef5;
        color: #d04477;
    }
    
    /* Hamburger menu styling - only for mobile */
    .hamburger-menu {
        cursor: pointer;
        display: none; /* Hide by default on desktop */
        z-index: 100;
        background-color: rgba(255, 255, 255, 0.9);
        border-radius: 12px;
        padding: 12px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        width: fit-content;
        margin: 0 auto;
        border: 2px solid #f8a5c2;
    }
    
    /* Mobile navigation responsiveness */
    @media (max-width: 768px) {
        .desktop-nav {
            display: none; /* Hide desktop nav on mobile */
        }
        
        .hamburger-menu {
            display: block; /* Show hamburger on mobile */
        }
        
        .nav-menu {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: rgba(255, 245, 250, 0.95);
            padding: 20px 0;
            list-style: none;
            margin: 0;
            display: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            z-index: 99;
            border-radius: 0 0 15px 15px;
        }
        
        .nav-menu.active {
            display: block;
        }
        
        .nav-menu li {
            padding: 10px 20px;
            text-align: center;
        }
    }