.maslow-container-a7e5cc0f {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 10px;
    margin: 0 auto;
}

.maslow-level-a7e5cc0f {
    background-color: #555;
    text-align: center;
    padding: 20px 15px;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Base states for interaction */
.maslow-level-a7e5cc0f.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Hover effect */
.maslow-level-a7e5cc0f:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    z-index: 2;
}

.maslow-content-a7e5cc0f {
    position: relative;
    z-index: 1;
}

.maslow-title-a7e5cc0f {
    margin: 0 0 5px 0;
    font-size: 1.25rem;
    font-weight: 700;
}

.maslow-desc-a7e5cc0f {
    font-size: 0.9rem;
    line-height: 1.4;
    opacity: 0.9;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, margin 0.4s ease, opacity 0.4s ease;
}

/* Expand description on hover */
.maslow-level-a7e5cc0f:hover .maslow-desc-a7e5cc0f {
    max-height: 100px;
    margin-top: 10px;
    opacity: 1;
}

/* In editor mode, always show everything to make it easy to edit */
.elementor-editor-active .maslow-level-a7e5cc0f {
    opacity: 1;
    transform: none;
}
.elementor-editor-active .maslow-desc-a7e5cc0f {
    max-height: none;
    margin-top: 10px;
    opacity: 1;
}
