.privacy .container{
    max-width: 104rem;
    width: 100%;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .privacy .container{
        max-width: 100%;
    }
}

.privacy__title {
    color: var(--background-secondary);
    font-weight: 500;
}

.privacy__item {
    position: relative;
    padding-left: calc(5px + var(--spacing-1));
}

.privacy__item::before {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    background: var(--text-color);
    border-radius: 50%;
    top: 1.2rem;
    left: 0;
}

.privacy__contact {
    border: 2px solid var(--background-secondary);
    border-radius: 15px;
}