.about-content {
    background: var(--color-primary-dark);
    padding: 24px;
}

.about-content__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 32px 100px 32px 180px;
    border-radius: 32px;
}

.about-content__body {
    color: var(--color-white);
}

.about-content__body h2,
.about-content__body h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 16px;
}

.about-content__body h2 {
    font-size: 32px;
}

.about-content__body h3 {
    font-size: 24px;
}

.about-content__body p {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    color: var(--color-white);
    line-height: 24px;
    margin-bottom: 16px;
}

.about-content__body p:last-child {
    margin-bottom: 0;
}

.about-content__body strong,
.about-content__body b {
    font-weight: 700;
}

@media (max-width: 1023px) {
    .about-content__container {
        padding: 24px 20px;
    }

    .about-content__body p {
        font-size: 15px;
        line-height: 22px;
    }
}
