.privacy-page {
    padding: 30px 0 100px;
}

.privacy-menu {
    overflow: visible;
    margin-top: 10px;
}

.privacy-menu__item {
    width: 240px;
    padding: 18px 25px;
    border-radius: 18px;
    border: 2px solid transparent;
    background: #FFF;
    box-shadow: 0 11px 18px 0 rgba(8, 37, 67, 0.06);

    display: flex;
    gap: 10px;

    color: #191C21;
    font-size: 14px;
    font-weight: 500;
    line-height: 143%;

    margin-right: 10px;

    transition: border-color .3s ease;
    height: auto;
    display: flex;
    align-items: center;
}

.privacy-menu__item:last-child {
    margin-right: 0;
}

.privacy-menu__item:hover {
    border-color: #20247A;
}

.privacy-menu__item.current {
    border-color: #20247A;
    pointer-events: none;
}

.privacy-columns {
    margin-top: 20px;
    display: flex;
    gap: 20px;
}


.privacy-content {
    color: #343E4A;
    font-size: 15px;
    font-weight: 400;
    line-height: 140%;
}

.privacy-content p {
    margin-bottom: 15px;
}

.privacy-content h2 {
    color: #191C21;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.23;
    margin: 25px 0 15px;
}
.privacy-content h3 {
    color: #191C21;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.23;
    margin: 25px 0 15px;
}

.privacy-content > *:last-child {
    margin-bottom: 0;
}


.privacy-toc {
    padding: 0 25px;
    width: 360px;
    flex-shrink: 0;
}

.privacy-toc__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
}

.privacy-toc__head.active .privacy-toc__toggle {
    transform: rotate(180deg);
}

.privacy-toc__body {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.privacy-toc__title {
    color: #191C21;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.44;
}

.privacy-toc__toggle {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s ease;

    display: none;
}

.privacy-toc__item {
    color: #20247A;
    font-size: 14px;
    font-weight: 500;
    line-height: 143%;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

@media screen and (max-width: 1260px) {
    .privacy-columns {
        flex-direction: column-reverse;
    }
    .privacy-toc {
        width: 100%;
    }
    .privacy-toc__head {
        pointer-events: all;
    }
    .privacy-toc__title {
        font-size: 15px;
    }
    .privacy-toc__toggle {
        display: inline-flex;
    }
    .privacy-toc__body {
        margin-top: 10px;
    }
    .privacy-toc__item {
        font-size: 13px;
    }

    .privacy-content h2 {
        font-size: 17px;
        margin: 20px 0 10px;
    }
    .privacy-content h3 {
        font-size: 15px;
        margin: 15px 0 10px;
    }
    .privacy-content p {
        margin-bottom: 10px;
        font-size: 13px;
    }

}

@media screen and (min-width: 581px) and (max-width: 1260px) {
    .privacy-toc {
        padding: 16px;
        border-radius: 15px;
        border: 2px solid #BACFE3;
        background: #FFF;
    }
}

@media screen and (max-width: 580px){
    .privacy-menu__item {
        padding: 14px;
        gap: 8px;
    }

    .privacy-toc {
        padding: 0 12px;
    }
}