.services-container {
   margin-top: 100px;
}

.intro-header {
    max-width: 1200px;
    margin-bottom: 2rem;
    align-items: flex-end;
    flex-direction: column;
    display: grid;
    flex-direction: column;
    justify-self: flex-end;
    padding: 0 20px;
}

.intro-title {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 2rem;
}

.intro-description {
    max-width: 600px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 3rem;
}

.services-image {
    width: 100%;
    /* height: 500px; */
    object-fit: cover;
    margin-bottom: 4rem;
    border-radius: 4px;
}

.services-heading {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 500;
    max-width: 800px;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .services-container {
        padding: 2rem 1rem 4rem 1rem;
    }

    .intro-title, .services-heading {
        font-size: 2.25rem;
        padding: 0;
    }

    .services-image {
        height: 300px;
    }
    .intro-header {
        padding: 0;
    }
}

/* services */
.services-list {
    /* max-width: 1440px; */
    margin: 0 auto;
    padding: 4rem 2rem;
}

.service-item {
    display: grid;
    grid-template-columns: minmax(400px, 1fr) 1fr;
    gap: 4rem;
    padding: 3rem 0;
    border-top: 1px solid #eee;
}

.service-heading {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.service-number {
    font-size: 1.5rem;
    font-weight: 500;
    color: #1a1a1a;
    min-width: 45px;
}

.service-title {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.service-arrow {
    font-family: monospace;
    margin-right: 0.5rem;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
}

@media (max-width: 968px) {
    .service-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 0;
    }

    .service-title {
        font-size: 1.75rem;
    }
    .calltoaction {
        padding: 20px !important;
    }
    .calltoaction h1 {
        font-size: 30px !important;
        line-height: 40px !important;
    }
}

@media (max-width: 480px) {
    .services-list {
        padding: 2rem 1rem;
    }

    .service-heading {
        flex-direction: column;
        gap: 0.5rem;
    }

    .service-title {
        font-size: 1.5rem;
    }
}

.calltoaction {
    background: #EFF5FF;
    padding: 200px;
}
.calltoaction h1 {
    font-size: 50px;
    letter-spacing: -5%;
    line-height: 56px;
    color: #0845A9;
    font-weight: 400;
    max-width: 950px;
}
.calltoaction button {
    padding: 20px 25px;
    background: transparent;
    border-radius: 28px;
    color: #0845A9;
    border: 1px solid #0845A9;
    margin-top: 20px;
}
.flex {
    display: flex;
}