.cta-section {
    padding: 160px var(--section-side-padding, 20px) 60px;
    background-color: #fff;
    overflow: hidden;
}

.cta-section-content-wrapper {
    max-width: var(--section-max-width, 1140px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

.cta-text-column {
    flex: 0 0 40%;
    max-width: 40%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cta-eyebrow {
    display: block;
    font-size: 0.9rem;
    color: var(--color-text-muted, #6c757d);
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.cta-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
    color: var(--color-secondary, #1a2335);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 25px;
}

.cta-description {
    font-size: 1rem;
    color: var(--color-text-dark, #333);
    line-height: 1.65;
    margin-bottom: 35px;
    max-width: 100%;
}

.btn-cta {
    background-color: var(--color-primary, #ff7700);
    color: var(--color-text-light, #fff);
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color var(--transition-speed, 0.3s) var(--animation-ease-out, ease),
                transform var(--transition-speed, 0.3s) var(--animation-ease-out, ease),
                box-shadow var(--transition-speed, 0.3s) var(--animation-ease-out, ease);
    align-self: flex-start;
    border: none;
    cursor: pointer;
}

.btn-cta:hover,
.btn-cta:focus {
    background-color: #e66a00;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(255, 119, 0, 0.3);
    outline: none;
}

.cta-small-image-wrapper {
    margin-top: 40px;
    align-self: flex-start;
    width: 130px;
    height: auto;
    background-color: #f4f5f7;
    padding: 10px;
    box-sizing: border-box;
    border-radius: var(--border-radius-md, 8px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.cta-small-apron-img {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.cta-images-column {
    flex: 0 0 60%;
    max-width: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-composed-image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-md, 8px);
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: opacity 0.5s var(--animation-ease-out, ease) 0.1s,
                transform 0.5s var(--animation-ease-out, ease) 0.1s;
}
.cta-composed-image.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--animation-ease-out, ease), transform 0.7s var(--animation-ease-out, ease);
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .cta-section-content-wrapper {
        gap: 30px;
    }
    .cta-text-column {
        flex-basis: 45%;
        max-width: 45%;
    }
    .cta-images-column {
        flex-basis: 55%;
        max-width: 55%;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding-left: var(--section-mobile-padding, 15px);
        padding-right: var(--section-mobile-padding, 15px);
        padding-top: 60px;
        padding-bottom: 40px;
    }
    .cta-section-content-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .cta-text-column,
    .cta-images-column {
        flex-basis: 100%;
        max-width: 100%;
    }
    .cta-text-column {
        align-items: center;
        text-align: center;
        order: 1;
        margin-bottom: 30px;
    }
    .cta-images-column {
        order: 2;
        width: 100%;
    }
    .cta-title {
        font-size: clamp(1.8rem, 7vw, 2.4rem);
    }
    .btn-cta {
        align-self: center;
        width: 100%;
        max-width: 320px;
        padding: 14px 30px;
    }
    .cta-small-image-wrapper {
        align-self: center;
        margin-bottom: 0;
    }
    .cta-composed-image {
        max-width: 90%;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .cta-title {
        font-size: 1.7rem;
    }
    .cta-small-image-wrapper {
        width: 100px;
        padding: 8px;
    }
    .cta-composed-image {
        max-width: 100%;
    }
}