body {
    font-family: "Montserrat", sans-serif;
}

.w-370 {
    width: 370px;
}

.font-size-40 {
    font-size: 40px;
}

.font-size-18 {
    font-size: 18px;
}

.section-left {
    left: -83px;
}

.container {
    padding: 0 20px;
}

.bg-custom {
    background-color: #f3f3f370;
}


.bg-green-500 {
    background-color: #45A74E !important;
}

.custom::after {
    content: "/";
    width: 100%;
    height: 68%;
    background-color: #000 ! IMPORTANT;
    POSITION: ABSOLUTE;
    TOP: 0;
    z-index: -99999;
}

@media screen and (min-width: 992px) {
    .mobile-view {
        display: none !important;
    }
}

@media screen and (max-width: 992px) {
    .mobile-view {
        display: block !important;
    }

    .desktop-view {
        display: none !important;
    }

    .mobile-view .section-left {
        left: 37%;
    }

    .margin-bottom-28 {
        margin-bottom: 28px;
    }

    .mpb-30 {
        padding-top: 30px;
    }

    .event .container .ss {
        align-items: baseline;
    }

}

@media screen and (max-width: 992px) {
    .font-size17 span {
        font-size: 17px;
    }

}

/* Mobile Menu Styles */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    display: none;
    overflow-y: auto;
    backdrop-filter: blur(5px);
}

.mobile-menu-content {
    padding: 90px 20px 40px;
    max-width: 500px;
    margin: 0 auto;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-item {
    display: flex;
    align-items: center;
    color: white;
    padding: 16px 0;
    font-size: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.mobile-menu-item:hover {
    color: #45A74E;
    padding-left: 10px;
}

.mobile-menu-icon {
    width: 24px;
    height: 24px;
    margin-right: 16px;
    flex-shrink: 0;
    stroke: #45A74E;
}

.mobile-menu-dropdown {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-dropdown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-dropdown-header:hover {
    color: #45A74E;
    padding-left: 10px;
}

.mobile-menu-dropdown-header span {
    display: flex;
    align-items: center;
}

.mobile-menu-dropdown-icon {
    transition: transform 0.3s ease;
}

.mobile-menu-dropdown.open .mobile-menu-dropdown-icon {
    transform: rotate(180deg);
}

.mobile-submenu {
    display: none;
    padding-left: 40px;
    padding-bottom: 10px;
}

.mobile-submenu a {
    display: flex;
    align-items: center;
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    transition: all 0.3s ease;
}

.mobile-submenu a:hover {
    color: #45A74E;
    padding-left: 10px;
}

.mobile-submenu-icon {
    width: 16px;
    height: 16px;
    margin-right: 12px;
    stroke: #45A74E;
}

.mobile-menu-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #45A74E, transparent);
    margin: 20px 0;
}

.mobile-menu-contact {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-contact a {
    display: inline-flex;
    align-items: center;
    background: #45A74E;
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-menu-contact a:hover {
    background: #3a8d42;
    transform: translateY(-3px);
}