.cta-banner-wrapper {
    position: relative;
    color: white;
    padding: 120px 30px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.cta-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6); /* Dark overlay */
    z-index: 1;
}

.cta-banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-banner-content__left h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    margin-top: 0;
    color: #f7f2e7;
    text-align: center;
}

.cta-banner-content__left p {
    font-size: 1.3rem;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #f7f2e7;
    text-align: center;
}

.cta-banner__image .cta-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-banner-content__right {
    margin: auto;
    transform: scale(1.2);
}
  
  .cta-banner-wrapper .button--primary {
    transform: scale(1.2);
  }
  
  .cta-banner-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto;
    max-width: 90%;
  }
  
  .cta-banner-divider .divider-left,
  .cta-banner-divider .divider-right {
    flex: 2;
    max-width: 400px;
  }
  
  .cta-banner-divider .divider-icon {
    max-width: 200px;
    flex: 1;
    margin: 0 1rem;
  }
  
@media (max-width: 768px) {
    .cta-banner {
        flex-direction: column-reverse;
        max-width: 100%;
        margin: 25px;
    }
    .cta-banner-rip {
        display: none;
    }    
    .cta-banner__text {
        padding: 30px 25px;

    }
    .cta-banner__text h2{
        font-size: 1.7rem;
        
    }
    .cta-banner-content__left h2   {
        font-size: clamp(2rem, 1.5rem + 1vw, 3rem) !important;
    }
    .cta-banner__text p {
        font-size: 1rem;
    }
    .image-text-corner-tl, .image-text-corner-tr, .image-text-corner-bl, .image-text-corner-br {
        display: none;
    }
}
