.page-title {
    position: relative;
    padding: 50px 30px;
    overflow: hidden;
    border-radius: 50px;
    margin-bottom: 70px;
}

p {
    margin-bottom: 20px;
}

.page-title h1 {
    color: #F4F7FA;
}

.page-title img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.toggle-titles {
    width: 100%;
    margin-bottom: 20px;
}

.toggle-title {
    text-align: center;
    width: 33%;
    border-bottom: 1px solid #707070;
    cursor: pointer;
    position: relative;
    padding: 10px 0;
    transition: all 300ms ease;
}

.toggle-title::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    bottom: 0;
    left: 0;
    background-color: transparent;
    transition: all 300ms ease;
}

.toggle-title.active::after {
    background-color: #1F2933;
}

.term-title {
    column-gap: 10px;
    margin: 30px 0 15px;
}

.terms-container > h3 {
    text-align: center;
    margin: 70px 0 10px;
}

.terms-container {
    padding-left: 0;
    padding-right: 0;
    display: none;
}

.terms-container.active {
    display: block;
}

p,
li,
u {
    font-family: 'OpenSans-SemiBold';
    color: #5f676f;
    font-size: 20px;
}

u:not(p u) {
    text-align: center;
    width: 100%;
    display: block;
    margin: 10px 0;
}

ol,
ul {
    padding-left: 30px;
}

strong {
    font-family: 'OpenSans-Bold';
}