.irm-container-3a5b81ed {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.irm-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.irm-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.irm-bg-layer.active {
    opacity: 1;
}

.irm-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.4);
    pointer-events: none;
}

.irm-menu-wrapper {
    position: relative;
    z-index: 3;
    padding: 0 5%;
    width: 100%;
}

.irm-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.irm-menu-item {
    margin: 10px 0;
}

.irm-menu-link {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 700;
    text-decoration: none;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

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

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

@media (max-width: 768px) {
    .irm-menu-wrapper {
        padding: 0 5%;
        text-align: center;
        align-items: center;
    }
    
    .irm-menu {
        align-items: center;
        width: 100%;
    }
    
    .irm-menu-item {
        margin: 15px 0;
    }
    
    .irm-container-3a5b81ed {
        min-height: auto;
        padding: 50px 0;
    }
}
