/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-banner {
    background-color: var(--color-dark-green);
    border-radius: 20px;
    padding: 50px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;
    flex: 0 0 60%;
}
.cta-img-home {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}

.cta-title {
    color: var(--color-white);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
}

.cta-title span {
    font-weight: 300;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--color-green);
    color: var(--color-white);
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: background-color var(--transition-speed);
}

.btn-primary:hover {
    background-color: #7db037;
}

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

