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

.page-gdpr__hero {
    background-color: #0A2E36; /* Main color */
    color: #FFFFFF; /* White text for dark background */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-gdpr__hero-image {
    max-width: 100%;
    height: auto;
    margin-top: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-gdpr__title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #E0B34C; /* Auxiliary color for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-gdpr__intro {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px;
}

.page-gdpr__section {
    padding: 60px 0;
    background-color: #FFFFFF;
    color: #0A2E36; /* Main color for text on light background */
}

.page-gdpr__section--alt {
    background-color: #F0F4F8; /* Lighter background for contrast */
    color: #0A2E36;
}

.page-gdpr__section--contact {
    background-color: #0A2E36; /* Main color for contact section */
    color: #FFFFFF;
    text-align: center;
}

.page-gdpr__subtitle {
    font-size: 2em;
    margin-bottom: 25px;
    color: #0A2E36; /* Main color for subtitles on light background */
    border-bottom: 3px solid #E0B34C; /* Auxiliary color for accent */
    padding-bottom: 10px;
    display: inline-block;
}

.page-gdpr__section--contact .page-gdpr__subtitle {
    color: #E0B34C; /* Auxiliary color for subtitles on dark background */
}

.page-gdpr__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    padding: 0;
}

.page-gdpr__list li {
    margin-bottom: 10px;
}

.page-gdpr__image {
    max-width: 80%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-gdpr__contact-link {
    color: #E0B34C; /* Auxiliary color for links on dark background */
    text-decoration: none;
    font-weight: bold;
}

.page-gdpr__contact-link:hover {
    text-decoration: underline;
}

.page-gdpr__button {
    display: inline-block;
    background-color: #E0B34C; /* Auxiliary color for button background */
    color: #0A2E36; /* Main color for button text */
    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;
    margin-top: 30px;
}

.page-gdpr__button:hover {
    background-color: #c79f3c; /* Slightly darker gold on hover */
    transform: translateY(-2px);
}

.page-gdpr__keyword {
    font-weight: bold;
    color: #E0B34C; /* Highlight keyword with auxiliary color */
}

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

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

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

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

    .page-gdpr__image {
        max-width: 95%;
    }

    .page-gdpr__list {
        margin-left: 15px;
    }
}

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

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

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