    :root {
        --primary-color: #064D50;
        --secondary-color: #00383b;
        --accent-color: #42db00;
        --light-color: #f8fafc;
        --dark-color: #00383b;
    }
    
    body {
        font-family: 'Montserrat', sans-serif;
        margin: 0;
        padding: 0;
        padding-top: 0 !important; /* Fix for extra padding */
    }
    
    /* Navbar Container */
    .curved-nav-container {
        position: relative;
        padding: 0;
        margin: 0;
        width: 100%;
        height: 80px;
    }
    
    /* Main Navbar */
    .curved-navbar {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
        display: flex;
        justify-content: center;
        background-color: transparent;
        padding: 0;
    }
    
    /* Curved Center Shape */
    .navbar-center {
        position: relative;
        width: 100%;
        max-width: 1400px;
        height: 80px;
        background-color: white;
        border-radius: 0 0 30px 30px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
        z-index: 10;
        transition: all 0.3s ease;
    }
    
    /* Scrolled State */
    .navbar-scrolled .navbar-center {
        height: 70px;
        border-radius: 0 0 25px 25px;
        background-color: rgba(255, 255, 255, 0.97);
    }
    
    /* Brand Logo */
    .curved-brand {
        display: flex;
        align-items: center;
        height: 100%;
        z-index: 2;
    }
    
    .curved-brand img {
        height: 50px;
        border-radius: 10%;
        transition: all 0.3s ease;
    }
    
    .navbar-scrolled .curved-brand img {
        height: 45px;
    }
    
    /* Navigation Menu */
    .curved-nav-menu {
        display: flex;
        justify-content: center;
        align-items: center;
        list-style: none;
        margin: 0;
        padding: 0;
        height: 100%;
    }
    
    .curved-nav-item {
        position: relative;
        height: 100%;
        display: flex;
        align-items: center;
    }
    
    .curved-nav-link {
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
        font-size: 16px;
        color: var(--dark-color);
        text-decoration: none;
        padding: 0 15px;
        height: 100%;
        display: flex;
        align-items: center;
        position: relative;
        transition: all 0.3s ease;
    }
    
    .curved-nav-link:hover,
    .curved-nav-item.active .curved-nav-link {
        color: var(--primary-color);
    }
    
    /* Highlight indicator for active/hover items */
    .curved-nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 3px;
        background-color: var(--primary-color);
        transition: all 0.3s ease;
        border-radius: 3px 3px 0 0;
    }
    
    .curved-nav-link:hover::after {
        width: 60%;
    }
    
    .curved-nav-item.active .curved-nav-link::after {
        width: 70%;
    }
    
    /* Dropdown Menu */
    .curved-dropdown {
        position: relative;
    }
    
    .curved-dropdown-menu {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(10px);
        min-width: 200px;
        background-color: white;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        padding: 15px 0;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 100;
        border-top: 3px solid var(--primary-color);
    }
    
    .curved-dropdown:hover .curved-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
    
    .curved-dropdown-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
        color: var(--dark-color);
        font-weight: 500;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .curved-dropdown-item:hover {
        background-color: rgba(6, 77, 80, 0.05);
        color: var(--primary-color);
        padding-left: 25px;
    }
    
    .new-badge {
        background-color: var(--primary-color);
        color: white;
        padding: 2px 8px;
        border-radius: 4px;
        font-size: 12px;
        font-weight: 600;
    }
    
    .premium-icon {
        color: var(--accent-color);
        font-size: 14px;
    }
    
    /* Action Buttons */
    .curved-nav-actions {
        display: flex;
        gap: 10px;
        margin-left: 15px;
    }
    
    .curved-button {
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
        font-size: 14px;
        padding: 8px 20px;
        border-radius: 50px;
        text-decoration: none;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .curved-button-outline {
        background-color: transparent;
        color: var(--primary-color);
        border: 2px solid var(--primary-color);
    }
    
    .curved-button-outline:hover {
        background-color: rgba(6, 77, 80, 0.1);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(6, 77, 80, 0.1);
        color: var(--primary-color);
    }
    
    .curved-button-primary {
        background-color: var(--primary-color);
        color: white;
    }
    
    .curved-button-primary:hover {
        background-color: var(--secondary-color);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(6, 77, 80, 0.2);
        color: white;
    }
    
    /* Mobile Toggle */
    .curved-toggle {
        display: none;
        background: none;
        border: none;
        font-size: 24px;
        color: var(--primary-color);
        cursor: pointer;
        z-index: 999;
    }
    
    /* Mobile Menu */
    .mobile-menu-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        max-width: 80%;
        height: 100%;
        background-color: white;
        z-index: 999;
        transition: all 0.3s ease;
        padding: 80px 20px 20px;
        overflow-y: auto;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    }
    
    body.menu-open .mobile-menu-backdrop {
        opacity: 1;
        visibility: visible;
    }
    
    body.menu-open .mobile-menu-container {
        right: 0;
    }
    
    .mobile-menu-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        font-size: 24px;
        color: var(--primary-color);
        cursor: pointer;
    }
    
    .mobile-nav-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .mobile-nav-item {
        margin-bottom: 10px;
    }
    
    .mobile-nav-link {
        display: block;
        padding: 12px 15px;
        color: var(--dark-color);
        text-decoration: none;
        font-weight: 600;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .mobile-nav-link:hover,
    .mobile-nav-item.active .mobile-nav-link {
        background-color: rgba(6, 77, 80, 0.1);
        color: var(--primary-color);
    }
    
    .mobile-dropdown {
        margin-bottom: 10px;
    }
    
    .mobile-dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 12px 15px;
        color: var(--dark-color);
        text-decoration: none;
        font-weight: 600;
        border-radius: 8px;
        transition: all 0.3s ease;
        background: none;
        border: none;
        text-align: left;
    }
    
    .mobile-dropdown-toggle:hover,
    .mobile-dropdown.active .mobile-dropdown-toggle {
        background-color: rgba(6, 77, 80, 0.1);
        color: var(--primary-color);
    }
    
    .mobile-dropdown-menu {
        padding: 5px 0 5px 15px;
        list-style: none;
        display: none;
    }
    
    .mobile-dropdown.active .mobile-dropdown-menu {
        display: block;
    }
    
    .mobile-dropdown-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 15px;
        color: var(--dark-color);
        text-decoration: none;
        border-radius: 8px;
        margin-bottom: 5px;
        font-weight: 500;
    }
    
    .mobile-dropdown-item:hover {
        background-color: rgba(6, 77, 80, 0.05);
        color: var(--primary-color);
    }
    
    .mobile-nav-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 30px;
    }
    
    .mobile-nav-actions .curved-button {
        width: 100%;
    }
    
    /* Responsive Styles */
    @media (max-width: 991.98px) {
        .curved-nav-menu,
        .curved-nav-actions {
            display: none;
        }
        
        .curved-toggle {
            display: block;
        }
        
        .navbar-center {
            justify-content: space-between;
            padding: 0 20px;
        }
    }
    
    @media (max-width: 575.98px) {
        .curved-navbar {
            padding: 0 10px;
        }
        
        .navbar-center {
            border-radius: 0 0 20px 20px;
            height: 70px;
        }
        
        .curved-brand img {
            height: 40px;
        }
    }