.main-about .pdf-link-container h3 {
    margin-bottom: 3.2rem;
}

.main-about .pdf-link-container {
    padding-top: 7rem;
    margin-bottom: 4rem;
}

.about-advantages {
    display: flex;
    gap: 1rem;
}

.about-advantages__column {
    width: calc((100% - 1rem) / 2);
}

.about-advantage {
    border-radius: 3rem;
    padding: 3rem 5rem 3rem 3rem;
    background-color: var(--light-gray);
}

.about-advantage:not(:last-child) {
    margin-bottom: 1rem;
}

.about-advantage img {
    width: 12rem;
    height: 12rem;
    margin-bottom: 1rem;
    display: block;
}

.about-advantage h3 {
    font-weight: 700;
    font-size: 2.2rem;
    line-height: 109%;
    margin-bottom: 1.6rem;
}

.about-advantage p:not(:last-child),
.about-advantage ul:not(:last-child) {
    margin-bottom: 1rem;
}

.partners {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: stretch;
    justify-content: flex-start;
}

.partners:not(:last-child) {
    margin-bottom: 4rem;
}

.partner {
    width: calc((100% - 2rem) / 3);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: relative;
    color: var(--gray);
    font-size: 1.6rem;
}

.partner a {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 327/168;
}

.partner img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 327/168;
    object-fit: contain;
    object-position: center;
    margin: 0 auto 1rem;
    align-self: center;
    border: 0.2rem solid var(--light-gray);
    border-radius: 3rem;
}

.partner br {
    display: none;
}

@media (max-width: 1024px) {
    .about-advantage {
        border-radius: 2.4rem;
        padding: 2rem;
    }
}

@media (max-width: 1024px) {
    .about-advantages {
        flex-direction: column;
    }

    .about-advantages__column {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .main-about .pdf-link-container {
        padding-top: 4rem;
        margin-bottom: 2rem;
    }

    .main-about .pdf-link-container h3 {
        margin-bottom: 2rem;
    }

    .about-advantage p:not(:last-child),
    .about-advantage ul:not(:last-child) {
        margin-bottom: 0.8rem;
    }

    .about-advantage img {
        width: 7.6rem;
        height: 7.6rem;
    }

    .about-advantage h3 {
        font-weight: 700;
        font-size: 1.6rem;
        line-height: 144%;
        margin-bottom: 0.8rem;
    }

    .partners {
        flex-direction: column;
        gap: 2.4rem;
        margin-top: 2.4rem;
    }

    h3 + .partners {
        margin-top: 0;
    }

    .partner {
        width: 100%;
        max-width: 50rem;
    }
}