.hero-container {
    width: 100%;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 40px;
    margin: 20px 0;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Mobile first - left parsys on top, right parsys below */
.hero-left {
    width: 100%;
}

.hero-right {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Desktop - left parsys on left, right parsys on right (vertically centered) */
@media (min-width: 769px) {
    .hero-content {
        flex-direction: row;
        align-items: center;
        gap: 40px;
    }
    
    .hero-left {
        flex: 0 0 auto;
        width: auto;
        max-width: 500px;
    }
    
    .hero-right {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 20px;
    }
}

/* Parsys styling */
.hero-left .cq-Overlay-placeholder,
.hero-right .cq-Overlay-placeholder {
    min-height: 100px;
    border: 2px dashed #ccc;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}
