.menu {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}
.menu > button {
    background-color: #F04C92;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
}
.mega-menu {
    display: none;
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    width: 80%;
    padding: 20px;
    border-radius: 5px;
    flex-direction: row;
    border: solid 1px #bcbcbc;
}
.mega-menu.show {
    display: flex;
}
.close-btn {
    text-align: right;
    font-size: 18px;
    cursor: pointer;
    color: #F04C92;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 15px;
}
.left-menu {
    padding: 10px;
    width: 23%;
    border-right: solid 1px #8d8d8d;
}
.left-menu a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: black;
    text-decoration: none;
    padding: 10px 0;
    cursor: pointer;
    border-bottom: solid 1px #8d8d8d;
    font-size: 16px;
}
.left-menu a .arrow {
    font-size: 14px;
    transition: transform 0.3s ease;
}
.right-menu {
    padding: 10px;
    width: 75%;
}
.right-menu a {
    display: inline-block;
    padding: 8px 5%;
    text-decoration: none;
    color: black;
  }
.right-menu a:hover {
    color: #F04C92;
}
.submenu {
    display: none;
    padding-left: 15px;
    margin-top: 5px;
}
.submenu a {
    display: block;
    padding: 5px 0;
    text-decoration: none;
    color: black;
}
.submenu a:hover {
    color: #F04C92;
}

/* Mobile Specific Styles */
@media (max-width: 768px) {
    .mega-menu {
        flex-direction: column;
        transform: translate(-50%, 0%);
        top:10%;
    }
    .left-menu {
        width: 100%;
        border: none;
    }
    .right-menu {
        display: none; /* Hide right menu in mobile */
    }
    .submenu {
        display: none;
        padding-left: 20px;
        margin-top: 5px;
        border-left: 2px solid #F04C92;
        padding: 10px;
    }
    .submenu a {
        padding-left: 10px;
    }
    .left-menu a.active + .submenu {
        display: block;
    }
    .left-menu a.active .arrow {
        transform: rotate(180deg); /* Down arrow flips up when active */
    }
}
.menu .arrow {
color:#F04C92!important;
}

