@media (max-width: 870px) {
    #privacy-policy, #cookie-policy {
        width: 95%;
    }

    .accordion {
        width: 100%;
        margin: auto;
    }

    .panel {
        width: 100%;
    }
}

@media (min-width: 870px) {
    #privacy-policy, #cookie-policy {
        width: 850px;
        margin-right: auto;
    }

    .accordion {
        width: 850px;
    }

    .panel {
        width: 850px;
    }
}

#privacy-policy, #cookie-policy {
    margin: 10px auto;
}

#privacy-policy>h1,
#date {
    text-align: center;
    color: white;
}

#cookie-policy>h1,
#date {
    text-align: center;
    color: white;
}

.accordion {
    margin-top: 5px;
    background-color: rgba(38, 40, 71, 0.5);
    color: white;
    cursor: pointer;
    padding: 18px;
    height: auto;
    border: none;
    border-radius: 5px;
    text-align: left;
    outline: none;
    font-size: 20px;
    transition: 0.4s;
}


.active,
.accordion:hover {
    background-color: #3b2614;
}

.accordion:after {
    content: '\002B';
    color: #ffffff;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.active:after {
    content: "\2212";
}

.panel {
    padding: 0 18px;
    background-color: rgba(255, 255, 255, 0.4);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.panel>p {
    font-size: 18px;
    margin-top: 10px;
    margin-left: 10px;
    margin-right: 10px;
    color: black;
}

.panel>ul>li {
    list-style-type: square;
    font-size: 18px;
    margin-left: 10px;
    margin-right: 10px;
    color: black;
}

#pnl {
    margin-bottom: 5px;
}
#link {
    color: rgb(46, 47, 114);
}

#link:hover {
    color: orangered;
}