.ab-4bb88b4a-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius: 1.5rem;
    overflow: hidden;
    min-height: 380px;
    background-color: #e8e3dc;
}

.ab-4bb88b4a-image {
    flex: 0 0 30%;
    height: 380px;
    background-size: cover;
    background-position: center;
}

.ab-4bb88b4a-content {
    flex: 1;
    padding: 3rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.ab-4bb88b4a-heading {
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    letter-spacing: -0.02em;
    color: #1a1a1a;
}

.ab-4bb88b4a-animated-wrapper {
    position: relative;
    height: 40px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.ab-4bb88b4a-animated-text {
    position: absolute;
    font-size: 1.5rem;
    color: #666666;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    text-align: center;
    width: 100%;
}

.ab-4bb88b4a-animated-text.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .ab-4bb88b4a-container {
        flex-direction: column;
    }
    .ab-4bb88b4a-image {
        width: 100%;
        height: 250px;
    }
    .ab-4bb88b4a-content {
        padding: 2rem;
    }
    .ab-4bb88b4a-heading {
        font-size: 2rem;
    }
    .ab-4bb88b4a-animated-text {
        font-size: 1.2rem;
    }
}