body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: #F6F7F8;
    max-width: 1920px;
}

.legalNotice {
    color: #000000;
    display: flex;
    justify-content: center;
    padding-top: 206px;
    padding-left: 328px;
    padding-right: 98px;
    background-color: #F6F7F8;
    
}
    
.legalNoticeHeader {
    display: flex;
    margin-bottom: 20px;
}
  
.legalNoticeHeadline{
    font-size: 61px;
    margin-right: 20px;
}
  
.arrowLeft {
    height: 32px;
    width: 32px;
    cursor: pointer;
    position: fixed;
    top: 225px;
    right: 96px
}

.arrowLeft:hover {
    background-color: #EEEEEE;
    transform: scale(1.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.hidden {
    display: none;
}

li{
    font-size: 16px;
}

h2{
    font-size: 27px;
    font-weight: 700;
    padding-top: 32px;
    padding-bottom: 16px;
}

h3{
    font-size: 20px;
    font-weight: 700;
}
  
.legalNoticeContent p {
    font-size: 16px;
    line-height: 1.5;
    padding-bottom: 24px;
}

.blueText {
    color: #29ABE2;
}

::-webkit-scrollbar {
    width: 4px;
    height: 4px;
    border-radius: 4px;
    padding-right: 4px;
}

::-webkit-scrollbar-track {
    background: #F6F7F8;
}

::-webkit-scrollbar-thumb {
    background: #A8A8A8;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #29ABE2;
    border-radius: 4px;
}

/* ///////////////////////////////Mobile-Screen///////////////////////////////////////////// */

@media (max-width: 1020px) {

    .legalNotice {
        color: #000000;
        padding-left: 8px;
        padding-bottom: 87px;
        padding-right: 8px;
    }

    .arrowLeft {
        height: 45px;
        width: 45px;
        cursor: pointer;
        position: fixed;
        top: 160px;
        right: 40px;
    }

}