.aa-c4689a12-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.aa-c4689a12-image-wrap,
.aa-c4689a12-content-wrap {
    flex: 1;
    min-width: 300px;
}

.aa-c4689a12-image-wrap img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.aa-c4689a12-title {
    margin-bottom: 15px;
}

/* Animations */
.aa-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.aa-animate.aa-visible {
    opacity: 1;
    transform: translateY(0);
}

.aa-c4689a12-title.aa-animate {
    transition-delay: 0.2s;
}

.aa-c4689a12-desc.aa-animate {
    transition-delay: 0.4s;
}

/* Fallback for editor mode */
.elementor-editor-active .aa-animate {
    opacity: 1;
    transform: none;
}