* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a {
    color: inherit;
    text-decoration: underline;
}

header::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

header h1 {
    position: relative;
    z-index: 2;
    font-size: 2.5rem;
    color: #fff;
}

.content {
    max-width: 1000px;
    margin: 50px auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
}

p {
    margin-bottom: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

thead {
    background-color: #2c3e50;
    color: #fff;
}

th, td {
    padding: 12px 15px;
    border: 1px solid #ddd;
    text-align: left;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}

footer p {
    margin: 0;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    header {
        height: 180px;
    }

    header h1 {
        font-size: 1.8rem;
    }

    th, td {
        padding: 10px;
        font-size: 0.9rem;
    }

    footer p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    table, thead, tbody, th, td, tr {
        display: block;
    }

    thead {
        display: none;
    }

    tr {
        margin-bottom: 15px;
        border: 1px solid #ccc;
        padding: 10px;
        background: #fff;
        border-radius: 5px;
    }

    td {
        display: flex;
        justify-content: space-between;
        padding: 8px 10px;
        border: none;
        border-bottom: 1px solid #eee;
        text-align: right;
    }

    td::before {
        content: attr(data-label);
        font-weight: bold;
        flex-basis: 50%;
        text-align: left;
    }

    .tableHeader{
        display: none;
    }
}

.containerFooterCookiePolicy {
    max-width: 1000px;
    margin: 0px auto;
    padding: 20px;
    border-radius: 8px;
}

.rowFooterCookiePolicy {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.copyright-linksFooterCookiePolicy {
    text-align: center;
    width: 100%;
}

.orangepix-logoFooterCookiePolicy {
    text-align: center;
    width: 100%;
    padding-top: 20px;
}


@media (min-width: 768px) {
    .copyright-linksFooterCookiePolicy {
        text-align: left;
        width: auto;
        flex-grow: 1;
    }

    .orangepix-logoFooterCookiePolicy {
        text-align: right;
        width: auto;
        padding-top: 0;
    }
}

@media (max-width: 768px) {
    .containerFooterCookiePolicy{
        width: 100%;
    }
}

.line-height-20px-FooterCookiePolicy {
    line-height: 20px;
    display: block;
    margin: 0;
}

.copyrightFooterCookiePolicy {
    margin-bottom: 5px;
}