.banner-constructor-wrapper {
    width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
    font-family: inherit;
    position: relative;
}

.banner-constructor-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 15px;
}

.banner-constructor-left {
    flex: 1 1 50%;
    min-width: 300px;
    padding-right: 20px;
    z-index: 2;
}

.banner-constructor-right {
    flex: 1 1 50%;
    min-width: 300px;
    position: relative;
    z-index: 1;
}

/* Typography Overrides */
.banner-title {
    margin: 0 0 10px 0;
    line-height: 1.2;
    font-weight: 700;
}

.banner-subtitle {
    margin: 0 0 20px 0;
    line-height: 1.5;
}

/* Promo Box */
.banner-promo-box {
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eaeaea;
    margin: 30px 0;
    max-width: 400px;
}

.promo-top-text {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
    text-align: center;
}

.promo-main-text {
    font-size: 16px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 500;
}

.banner-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.banner-btn:hover {
    opacity: 0.9;
    color: inherit;
    text-decoration: none;
}

/* Features */
.banner-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    flex: 1 1 calc(33.333% - 20px);
    min-width: 200px;
}

.feature-icon {
    font-size: 20px;
    margin-right: 12px;
    margin-top: 2px;
}

.feature-text {
    font-size: 14px;
    line-height: 1.4;
}

/* Image side  */
.banner-image-wrapper {
    position: relative;
    text-align: center;
}

.banner-image-wrapper img {
    position: relative;
    z-index: 2;
    max-width: 100%;
    height: auto;
}

/* The curved background shape as requested by the original screenshot */
.banner-shape-bg {
    position: absolute;
    top: -20%;
    right: -20%;
    width: 100%;
    height: 140%;
    background: #fdf5e6; /* Fallback light cream color typical of the screenshot */
    border-radius: 50%;
    z-index: 1;
    display: block;
}

@media (max-width: 768px) {
    .banner-constructor-inner {
        flex-direction: column;
    }
    .banner-constructor-left {
        padding-right: 0;
        text-align: center;
        order: 1;
    }
    
    .banner-promo-box {
        margin: 30px auto;
    }

    .banner-features {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .banner-constructor-right {
        order: 2;
        margin-top: 30px;
    }
}
