.padding-horizontal-cta{
    padding: 90PX 0px;
}
.heromodern {
    position: relative;
    background-color: #f0f0f5;
    border-radius: 20px;
    overflow: hidden;
    padding: 40px;
    min-height: 400px;
    display: flex;
    align-items: center;
    width: 1142px;
    margin: auto;
}

.title-large-cta {
    font-size: 42px;
    font-weight: 700;
    line-height: 130%;
    color: var(--dark-color, #434A54);
    margin-bottom: 20px;
}

.hero-content-cta {
    width: 50%;
    z-index: 2;
    position: relative;
}

.hero-badge {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 500;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--dark-color, #333);
    line-height: 1.2;
}

.hero-description p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #666;
    max-width: 90%;
}

.hero-image-cta {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50%;
    z-index: 1;
}

.hero-image-cta img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.curved-text {
    position: absolute;
    right: 20%;
    top: 10%;
    width: 60%;
    height: 60%;
    z-index: 1;
    opacity: 0.5;
}

@media (max-width: 992px) {
    .heromodern h1 {
        font-size: 32px;
    }
    
    .hero-description p {
        font-size: 15px;
    }
    
    .curved-text {
        opacity: 0.3;
    }
}

@media (max-width: 768px) {
    .heromodern {
        flex-direction: column;
        padding: 30px;
        min-height: auto;
    }

    .hero-content-cta {
        width: 100%;
        order: 2;
        margin-bottom: 20px;
    }
    
    .hero-content {
        width: 100%;
        order: 2;
    }
    
    .hero-image-cta {
        position: relative;
        width: 100%;
        height: 250px;
        margin-bottom: 30px;
        order: 1;
        border-radius: 20px;
    }

    .hero-image-cta img{
        border-radius: 20px;
    }
    
    .heromodern h1 {
        font-size: 28px;
    }
    
    .curved-text {
        display: none;
    }
}

@media (max-width: 480px) {
    .heromodern {
        max-width: 100vw;
        padding: 20px;
        border-radius: 20px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .heromodern h1 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .hero-description p {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .hero-image-cta {
        height: 200px;
        border-radius: 20px;
    }
}