/* Mobile Menu */
.mobile-menu {
    display: none; /* Initially hidden */
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    color: #fff;
    padding: 20px;
    z-index: 1000;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
}

.logo img {
    height: 40px; /* Adjust as needed */
}

.close-btn {
    font-size: 24px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-links a {
    font-size: 28px;
    color: #fff;
    text-decoration: none;
    margin: 15px 0;
    font-weight: 500;
    display: block;
}

.menu-buttons {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: auto;
}

.open-account-btn, .login-btn {
    flex: 1;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    text-transform: uppercase;
}

.open-account-btn {
    background-color: #EAC374; /* Gold color */
    color: #000;
    margin-right: 10px;
}

.login-btn {
    background-color: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.30);
}

.open-account-btn:hover, .login-btn:hover {
    opacity: 0.9;
}
