/* Service CTA Section Styles for Service Pages */
.service-cta-section {
    height: 460px;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.service-cta-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 45px;
}


.service-cta-background {
    width: 1320px;
    height: 346px;
    background-image: url('/images/step-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 50px;
    margin: 0 auto;
    position: relative;
}

.service-cta-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 539px;
}

.service-cta-title {
    width: 539px;
    height: 96px;
    font-family: 'Cal Sans';
    font-style: normal;
    font-weight: 400;
    ;
    font-size: 40px;
    line-height: 120%;
    color: #FFFFFF;
    margin: 0;
    display: flex;
    align-items: center;
}

.service-cta-description {
    width: 539px;
    height: 54px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    color: #FFFFFF;
    margin: 0;
    display: flex;
    align-items: center;
}

.service-cta-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16px 28px;
    gap: 10px;
    width: 196px;
    height: 56px;
    background: #FFFFFF;
    border-radius: 100px;
    color: var(--primary, #E62D5B);
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.service-cta-btn:hover {
    background: var(--primary, #E62D5B);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 45, 91, 0.3);
}

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

/* Responsive Design */
@media (max-width: 1400px) {
    .service-cta-container {
        padding: 0 30px;
    }

    .service-cta-background {
        width: 100%;
        max-width: 1200px;
        padding-left: 60px;
    }
}

@media (max-width: 1200px) {
    .service-cta-background {
        width: 100%;
        max-width: 1000px;
        height: 320px;
        padding-left: 50px;
    }

    .service-cta-title {
        width: 100%;
        max-width: 480px;
        height: auto;
        font-size: 36px;
    }

    .service-cta-description {
        width: 100%;
        max-width: 480px;
        height: auto;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .service-cta-section {
        height: auto;
        padding: 40px 0;
    }

    .service-cta-background {
        background-image: url('/images/step-background1.png');
    }

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

    .service-cta-background {
        width: 100%;
        height: 328px;
        padding: 40px 30px;
    }

    .service-cta-content {
        padding: 0px 10px;
        max-width: 100%;
    }

    .service-cta-title {
        width: 100%;
        max-width: 350px;
        height: auto;
        font-size: 32px;
        line-height: 130%;
    }

    .service-cta-description {
        width: 100%;
        max-width: 350px;
        height: auto;
        font-size: 18px;
        line-height: 140%;
    }

    .service-cta-btn {
        width: 186px;
        height: 50px;
        padding: 14px 24px;
        font-size: 16px;
    }
}

@media (max-width: 440px) {
    .service-cta-container {
        padding: 0 15px;
    }

    .service-cta-background {
        height: 328px;
        padding: 30px 20px;
        border-radius: 15px;
    }

    .service-cta-content {
        gap: 20px;
    }

    .service-cta-title {
        max-width: 280px;
        font-size: 32px;
        line-height: 125%;
    }

    .service-cta-description {
        max-width: 280px;
        font-size: 18px;
    }

    .service-cta-btn {
        width: 186px;
        height: 46px;
        padding: 12px 20px;
        font-size: 16px;
    }
}