.irm-container-wrap-4feb9cc5 {
    position: relative;
    width: 100%;
    height: 100vh; /* Strictly fit to screen */
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 0.5s ease-in-out;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    overflow: hidden;
}

/* Rich black-to-clear gradient mask overlaying from left to right on desktop */
.irm-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 30%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
}

.irm-grid {
    position: relative;
    z-index: 2;
    display: flex;
    width: 100%;
    height: 100%;
    max-width: 100%;
    padding: 0 5%;
    box-sizing: border-box;
    align-items: center;
    justify-content: space-between;
}

/* Pull menu further to the left */
.irm-menu-column {
    flex: 0 0 45%;
    max-width: 45%;
    padding-left: 20px;
}

.irm-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.irm-menu-item {
    margin: 0;
    padding: 0;
}

.irm-menu-link {
    display: inline-block;
    font-size: 2.8rem;
    font-weight: 700;
    text-decoration: none;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.irm-menu-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    transition: width 0.3s ease;
}

.irm-menu-item:hover .irm-menu-link::after,
.irm-menu-item.irm-active .irm-menu-link::after {
    width: 100%;
}

.irm-details-column {
    flex: 0 0 40%;
    max-width: 40%;
    display: flex;
    justify-content: flex-end;
}

.irm-details-box {
    display: none;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    width: 100%;
    max-width: 450px;
    box-sizing: border-box;
    animation: fadeIn 0.4s ease-in-out forwards;
}

.irm-details-box.irm-active {
    display: block;
}

.irm-details-title {
    font-size: 2.2rem;
    margin-top: 0;
    margin-bottom: 15px;
}

.irm-details-intro {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Hidden by default on desktop, shown on mobile */
.irm-details-short-desc {
    display: none;
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 20px;
}

.irm-details-button {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.irm-details-button:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

/* Burger Button Hidden on Desktop */
.irm-burger-btn {
    display: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile & Tablet responsiveness styling */
@media (max-width: 991px) {
    /* Set layout and menu to toggle burger view */
    .irm-container-wrap-4feb9cc5 {
        height: 100vh;
        align-items: flex-end;
    }

    .irm-overlay {
        background: rgba(0, 0, 0, 0.5); /* Semi-dark overlay altogether on mobile */
    }

    /* Show Mobile Burger */
    .irm-burger-btn {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 32px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 10;
        position: absolute;
        top: 25px;
        left: 25px;
    }

    .irm-burger-line {
        width: 100%;
        height: 3px;
        background-color: #ffffff;
        transition: all 0.3s ease;
        border-radius: 2px;
    }

    /* Burger Toggle animations */
    .irm-burger-btn.irm-active .irm-burger-line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .irm-burger-btn.irm-active .irm-burger-line:nth-child(2) {
        opacity: 0;
    }
    .irm-burger-btn.irm-active .irm-burger-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Slide-out Sidebar Menu from the left */
    .irm-menu-column {
        position: absolute;
        top: 0;
        left: -320px;
        width: 280px;
        max-width: 85%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        z-index: 8;
        padding: 100px 30px 40px 30px;
        transition: left 0.3s ease-in-out;
        box-shadow: 5px 0 25px rgba(0,0,0,0.5);
        flex: none;
    }

    .irm-menu-column.irm-open {
        left: 0;
    }

    .irm-menu-link {
        font-size: 1.6rem;
    }

    .irm-grid {
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
        padding: 20px 20px 40px 20px;
    }

    .irm-details-column {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
        justify-content: center;
    }

    .irm-details-box {
        padding: 25px;
        max-width: 100%;
    }

    .irm-details-title {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }

    /* Show only mobile-targeted short description and hide detailed rich intros on small screens */
    .irm-details-intro {
        display: none;
    }

    .irm-details-short-desc {
        display: block;
    }

    .irm-details-button {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}
