        .header {
            display: flex;
            position: relative;
            justify-content: center;
            padding: 15px 0;
        }

        .menu-container {
            background-color: white;
            border-radius: 14px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            padding: 0 20px;
            width: 94%;
            max-width: 1200px;
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            font-weight: bold;
            font-size: 1.2rem;
            color: #333;
        }

        .hamburger {
            width: 25px;
            height: 20px;
            position: relative;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .hamburger span {
            display: block;
            height: 2px;
            width: 100%;
            background-color: #333;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .menu-items {
            height: 0;
            opacity: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .menu-items ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .menu-items li {
            padding: 12px 0;
            border-top: 1px dotted #f1f1f1;
        }

        .menu-items a {
            text-decoration: none;
            color: #333;
            font-size: 1rem;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
        }

        .menu-icon {
            width: 10px;
            height: 10px;
            background-color: #00a0a0; /* Teal color */
            border-radius: 50%;
            display: inline-block;
            margin-right: 10px;
        }

        .menu-items a:hover {
            color: #007bff;
        }

        /* Submenu styles */
        .has-submenu {
            position: relative;
        }

        .submenu {
            padding-left: 15px !important;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .submenu li {
            border-top: 1px solid #f1f1f1;
            padding-left: 20px;
        }

        .submenu-trigger {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            text-align: left;
        }
        
        .submenu-trigger .menu-text {
            flex: 1;
            text-align: left;
        }

        .arrow {
            font-size: 0.8rem;
            transition: transform 0.3s ease;
        }

        .has-submenu.active .submenu {
            max-height: 300px;
        }

        .has-submenu.active .arrow {
            transform: rotate(180deg);
        }

        /* Hamburger animation */
        .hamburger.active span:nth-child(1) {
            transform: translateY(9px) rotate(45deg);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: translateY(-9px) rotate(-45deg);
        }

        /* Menu expanded state */
        .menu-items.active {
            height: auto;
            opacity: 1;
            padding-bottom: 15px;
        }
  