.cta-section {
    padding: 0;
    background-color: #f0f7ff;
    overflow: hidden;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.cta-content {
    flex: 1;
    padding: 60px 40px;
}

.cta-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-text {
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px;
    max-width: 500px;
}

.cta-button {
    display: inline-block;
    background-color: #0066ff;
    color: white;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #0052cc;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
}

.cta-button:active {
    transform: translateY(0);
}

.cta-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    position: relative;
}

.cta-image-wrapper {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #e6f2ff;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0, 102, 255, 0.1);
    position: relative;
}

.cta-image-wrapper::before {
    content: "";
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background-color: rgba(230, 242, 255, 0.5);
    border-radius: 50%;
    z-index: -1;
}

.cta-image {
    width: 90%;
    height: 90%;
    object-fit: cover;
    border-radius: 50%;
}

/* Responsive styles */
@media (max-width: 992px) {
    .cta-heading {
        font-size: 2rem;
    }

    .cta-image-wrapper {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .cta-container {
        flex-direction: column;
    }

    .cta-content {
        width: 100%;
        padding: 50px 30px 30px;
        text-align: center;
    }

    .cta-text {
        margin-left: auto;
        margin-right: auto;
    }

    .cta-image-container {
        width: 100%;
        padding: 0 30px 50px;
    }

    .cta-image-wrapper {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 480px) {
    .cta-heading {
        font-size: 1.7rem;
    }

    .cta-content {
        padding: 40px 20px 20px;
    }

    .cta-image-container {
        padding: 0 20px 40px;
    }

    .cta-image-wrapper {
        width: 200px;
        height: 200px;
    }
}
