/* style/gdpr.css */
.page-gdpr {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

.page-gdpr__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-gdpr__hero {
    background: linear-gradient(135deg, #0A2342, #1A3F6D);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-gdpr__hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: #FFD700;
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(50px);
}

.page-gdpr__hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background-color: #FFD700;
    opacity: 0.15;
    border-radius: 50%;
    filter: blur(60px);
}

.page-gdpr__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-gdpr__subtitle {
    font-size: 1.4em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-gdpr__button {
    display: inline-block;
    background-color: #FFD700;
    color: #0A2342;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-gdpr__button:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-gdpr__section {
    padding: 60px 0;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.page-gdpr__section:nth-of-type(even) {
    background-color: #f0f4f8;
}

.page-gdpr__content-block {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.page-gdpr__section:nth-of-type(even) .page-gdpr__content-block {
    background-color: #fdfdfd;
}

.page-gdpr__heading {
    font-size: 2.2em;
    color: #0A2342;
    margin-bottom: 25px;
    border-bottom: 3px solid #FFD700;
    padding-bottom: 10px;
    display: inline-block;
    font-weight: bold;
}

.page-gdpr__section p {
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #444;
}

.page-gdpr__list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-gdpr__list li {
    background-color: #f9f9f9;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-left: 5px solid #0A2342;
    border-radius: 5px;
    font-size: 1.05em;
    color: #333;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

.page-gdpr__list li:last-child {
    margin-bottom: 0;
}

.page-gdpr__section:nth-of-type(even) .page-gdpr__list li {
    background-color: #f3f7fb;
}

.page-gdpr__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-gdpr__image--inline {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
}

.page-gdpr__contact .page-gdpr__button--bottom {
    margin-top: 40px;
    width: auto;
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.2em;
    padding: 18px 35px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-gdpr__title {
        font-size: 2.5em;
    }

    .page-gdpr__subtitle {
        font-size: 1.2em;
    }

    .page-gdpr__heading {
        font-size: 1.8em;
    }

    .page-gdpr__section {
        padding: 40px 0;
    }

    .page-gdpr__content-block {
        padding: 25px;
    }

    .page-gdpr__list li {
        padding: 12px 15px;
        font-size: 1em;
    }

    .page-gdpr__button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-gdpr__contact .page-gdpr__button--bottom {
        font-size: 1.1em;
        padding: 15px 30px;
    }
}

@media (max-width: 480px) {
    .page-gdpr__title {
        font-size: 2em;
    }

    .page-gdpr__subtitle {
        font-size: 1em;
    }

    .page-gdpr__heading {
        font-size: 1.5em;
    }

    .page-gdpr__section {
        padding: 30px 0;
    }

    .page-gdpr__content-block {
        padding: 20px;
    }

    .page-gdpr__list li {
        padding: 10px 12px;
        font-size: 0.95em;
    }

    .page-gdpr__button {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-gdpr__image--inline {
        max-width: 90%;
    }
    
    .page-gdpr__contact .page-gdpr__button--bottom {
        font-size: 1em;
        padding: 12px 25px;
    }
}