*, *::before, *::after {
    box-sizing: border-box;
}

main {
    display: flex;
}

.legal-notice-container {
    max-width: 1200px;
    width: 100%;
    gap: 30px;
    margin: 128px 88px 30px 320px;
}

.legal-notice-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    
    width: 100%;
}

h1 {
    color: #000;
    font-size: 61px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
}

.imprint-adress{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.arrow-container {
    width: 37px;
    height: 37px;
    padding: 2.5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.arrow-left-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    cursor: pointer;
    background-image: url("../img/arrow-left-line.png");
    background-size: cover;
    transition: background-image 0.1s ease-in-out;
}

.arrow-left-icon:hover {
    background-image: url("../img/arrow-hover.png");
}

.legal-container-information {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 35px;
}

.imprint {
    color: var(--bg-color, #4589FF);
    font-size: 33px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
}

li {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.info-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
}

h3 {
    color: var(--ligth-blue, #005DFF);
    font-size: 19px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    margin: 0;
}

p {
    align-self: stretch;
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    margin: 0;
}

h2 {
    color: var(--ligth-blue, #005DFF);
    font-size: 33px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    margin: 0;
}

.privacy-button {
    color: var(--menu, #42526E);
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    padding: 8px;
    gap: 8px;
}

.legal-button {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    padding: 8px;
    background-color: var(--bg-color, #4589FF);
    border-radius: 10px;
}

.privacy-button:hover {
    color: var(--bg-color, #4589FF);
}

.logout-button {
    opacity: 0;
}

.header-container-right-user-profile,
.header-container-help,
.user-initials-container  {
    display: none;
}

#user-profile {
    display: none !important;
}

.header-container-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

@media(max-width: 1024px) {
    .legal-notice-container {
        gap: 30px;
        margin: 144px 16px 90px 16px;
    }
  }

/* Media Query für Bildschirmbreite von maximal 768px */
@media(max-width: 768px) {    

    h1 {
        font-size: 47px;
    }

    h2 {
        font-size: 23px;
    }
}

/* Media Query für Bildschirmbreite von maximal 390px */
@media(max-width: 390px) {
    h1 {
        font-size: 37px;
    }
}