.hb-12d529ed-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    padding: 20px 0;
}
.hb-12d529ed-bubble {
    background-color: var(--e-global-color-primary, #E8A0A8);
    border-radius: 50%;
    width: 240px;
    height: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.hb-12d529ed-bubble:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.1);
}
.hb-12d529ed-bubble h3 {
    margin: 0;
    font-size: 18px;
    z-index: 2;
    color: #ffffff;
    font-family: var(--e-global-typography-primary-font-family, 'Roboto'), sans-serif;
    font-weight: var(--e-global-typography-primary-font-weight, 600);
    transition: opacity 0.3s ease;
}
.hb-12d529ed-bubble:hover h3 {
    opacity: 0;
}
.hb-12d529ed-content {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--e-global-color-accent, #D4B8BC);
    padding: 30px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 1.5;
    transition: all 0.4s ease;
    z-index: 1;
    overflow-y: auto;
    color: var(--e-global-color-text, #4A4A4A);
    font-family: var(--e-global-typography-text-font-family, 'Roboto'), sans-serif;
    transform: scale(0.9);
}
.hb-12d529ed-content p {
    margin: 0;
    width: 100%;
}
.hb-12d529ed-bubble:hover .hb-12d529ed-content {
    opacity: 1;
    z-index: 3;
    transform: scale(1);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .hb-12d529ed-bubble {
        width: 200px;
        height: 200px;
        padding: 15px;
    }
    .hb-12d529ed-bubble h3 {
        font-size: 16px;
    }
    .hb-12d529ed-content {
        padding: 20px 15px;
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .hb-12d529ed-container {
        gap: 20px;
    }
    .hb-12d529ed-bubble {
        width: 150px;
        height: 150px;
        padding: 10px;
    }
    .hb-12d529ed-bubble h3 {
        font-size: 14px;
    }
    .hb-12d529ed-content {
        padding: 15px 10px;
        font-size: 11px;
    }
}
