.irm-fadb534c-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 20px;
}

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

.irm-fadb534c-item {
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    display: inline-block;
    width: fit-content;
    color: #fff; /* Default color */
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

/* Underline Effect */
.irm-fadb534c-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #fff; /* Handled by Elementor control */
    transition: width 0.3s ease;
}

.irm-fadb534c-item:hover::after {
    width: 100%;
}

.irm-fadb534c-item:hover {
    opacity: 0.8;
}