.approaches {
    padding: 140px 0;
}

.approaches .h2 {
    background: radial-gradient(201.72% 286.81% at 50% 131.25%, #09111A 30%, #3586EF 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 60px;
}

.approaches .items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.approaches .items .image {
    background: linear-gradient(180deg, #F0F7FF 0%, #DAEAFF 100%);
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 557.34 / 333.81;
}

.approaches .items .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.approaches .items .h4 {
    color: var(--n-black);
    margin-top: 24px;
    margin-bottom: 16px;
}

.approaches .items p {
    color: var(--n-grey);
}

.approaches .bottom-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 40px;
    background: var(--n-light-blue-BG);
    border-radius: 20px;
    margin-top: 48px;
}

.approaches .bottom-items .h4 {
    color: var(--n-black);
}

.approaches .bottom-items .item {
    display: flex;
    gap: 20px;
}

.approaches .bottom-items .item p{
    color: var(--n-dark-grey);
}

@media (max-width: 1919px) {
    .approaches {
        padding: 100px 0;
    }

    .approaches .h2{
        margin-bottom: 48px;
    }

    .approaches .bottom-items{
        margin-top: 40px;
        padding: 32px;
        gap: 32px;
        grid-template-columns: repeat(3, 1fr);
    }

    .approaches .bottom-items .h4{
        grid-column: 1 / span 4;
    }

    .approaches .bottom-items .item img {
        width: 48px;
        height: 48px;
    }

    .approaches .bottom-items .item{
        gap: 16px;
    }
}

@media (max-width: 1439px) {
    .approaches {
        padding: 80px 0;
    }

    .approaches .items .h4{
        margin-top: 20px;
    }

    .approaches .bottom-items{
        padding: 24px;
        row-gap: 24px;
    }
}

@media (max-width: 1279px) {
    .approaches .items{
        grid-template-columns: 1fr;
    }

    .approaches .items .item{
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .approaches .items .h4{
        margin-top: 0;
    }

    .approaches .bottom-items{
        border-radius: 16px;
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .approaches .bottom-items .h4{
        grid-column: 1;
        margin-bottom: -8px;
    }
}

@media (max-width: 577px) {
    .approaches {
        padding: 60px 0;
    }

    .approaches .h2 {
        margin-bottom: 32px;
    }

    .approaches .items .item{
        grid-template-columns: 1fr;
    }

    .approaches .bottom-items{
        padding: 20px;
        gap: 24px;
    }
}