#services {
    width: 100%;
    height: max-content;
    padding: 20px;
}

.services {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.services-heading {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.services-heading-left h2 {
    font-size: var(--h5);
    color: var(--heading-color);
    background-image: url(/assets/text-mask.png);
    background-size: cover;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
}

.services-heading-right p {
    font-size: var(--small);
    color: var(--text-color);
    font-weight: 400;
    text-align: center;
    line-height: 1.5;
}

.services-content {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.services-content-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.services-accordian {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-accordian-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-accordian-item-number {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 10px;
}

.services-accordian-item-number-left {
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    gap: 10px;
}

.services-accordian-item-number-right {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    color: var(--blue-600);
}

.services-accordian-item-number .number {
    font-size: var(--h5);
    color: var(--blue-600);
    font-weight: 700;
}

.services-accordian-item-number .title {
    font-size: var(--body);
    color: var(--blue-600);
    font-weight: 400;
    gap: 10px;
}

.services-accordian-item-description {
    font-size: var(--small);
    color: var(--text-color);
    font-weight: 400;
    line-height: 1.5;
}

.services-img {
    width: 100%;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    overflow: hidden;
    -webkit-mask: url(/assets/mask.svg) center/contain no-repeat, linear-gradient(#000000 0 0);
    mask-size: 180px;
    mask-position: bottom left;
    mask-composite: exclude;
}

.services-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.divider {
    width: 100%;
    height: 1px;
    background-color: var(--blue-100);
    margin: 20px 0;
}

.services-content-right {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.services-content-right .cta-button {
    position: absolute;
    bottom: 0;
    left: 0;
}

/* Media Queries */

@media (min-width: 425px) {
    .services-heading-left h2 {
        font-size: var(--h4);
    }

    .services-heading-right p {
        font-size: var(--body);
    }

    .services-img {
        mask-size: 220px;
    }

}

@media (min-width: 768px) {
    #services {
        padding: 40px;
    }

    .services-heading-left h2 {
        font-size: var(--h3);
    }

    .services-heading-right p {
        font-size: var(--body);
    }

    .services-accordian-item-number .number {
        font-size: var(--h4);
    }
    
    .services-accordian-item-number .title {
        font-size: var(--large);
    }

    .services-accordian-item-description {
        font-size: var(--body);
    }

    .services-img {
        height: 350px;
    }

    .services-img img {
        mask-size: 220px;
    }
}

@media (min-width: 1024px) {
    #services {
        padding: 60px;
    }

    .services-heading {
        flex-direction: row;
        gap: 50px;
    }

    .services-heading-left {
        width: 50%;
    }

    .services-heading-right {
        width: 50%;
    }

    .services-heading-left h2 {
        font-size: var(--h3);
        text-align: left;
    }

    .services-heading-right p {
        font-size: var(--body);
        text-align: justify;
    }

    .services-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 60px 0;
    }

    .services-content-left {
        width: 50%;
        padding: 0 40px;
    }

    .services-content-right {
        width: 50%;
    }

    .services-accordian-item-number .title {
        font-size: var(--body);
    }

    .services-img {
        height: 500px;
        border-radius: 30px;
    }
}

@media (min-width: 1440px) {
    .services-heading-left h2 {
        font-size: var(--h2);
        max-width: 600px;
    }

    .services-heading-right p {
        font-size: var(--large);
    }

    .services-img {
        height: 700px;
        border-radius: 40px;
        mask-size: 300px;
    }
}