.cta-section {
    position: relative;
    width: 100%;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 120px; 
    padding: 80px 40px;
    background-image: url('https://www.kalasanati.com/Portals/0/asset/icon/cta-desktop.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.cta-phone-link {
    position: absolute;
    left: 10%; 
    top: 48%;
    transform: translateY(-50%);
    color: #333; 
    font-weight: 800;
    font-size: 1.4rem;
    text-decoration: none;
    letter-spacing: 1px;
    z-index: 2;
    width: 190px; 
    text-align: center;
    padding-right: 35px;
}

.cta-content {
    color: white;
    text-align: right;
    width: 100%;
    padding-right: 20px; 
    margin-right: auto; 
}

.cta-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.cta-desc {
    font-size: 1rem;
    opacity: 0.9;
}

.mobile-only {
    display: none;
}

@media screen and (max-width: 768px) {
    .cta-section {
        background-image: url('https://www.kalasanati.com/Portals/0/asset/icon/cta-mobile.svg');
        background-size: contain;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        min-height: 250px;
    }

    .cta-content {
        text-align: center;
        padding-right: 0;
        margin-bottom: 60px;
    }

    .desktop-only {
        display: none;
        padding-top: 30px;
    }
    .mobile-only {
        display: block;
    }
    .cta-title {
        font-size: 1.2rem;
        text-align: right;
        padding-right: 20px;
        padding-top: 40px;
    }
    .cta-desc {
        font-size: 0.9rem;
        text-align: right;
        margin-right: 20px;
    }
    .cta-phone-link {
        left: calc(31%);
        top: auto;
        bottom: 104px;
        transform: translateX(-70%);
        min-width: 200px;
        padding-right: 30px;
        font-size: 10px;
    }
}