/* style/gdpr.css */

/* Variables for consistent colors */
:root {
    --page-gdpr-primary-color: #FFD700; /* Gold */
    --page-gdpr-secondary-color: #00BFFF; /* Deep Sky Blue */
    --page-gdpr-text-dark: #222222; /* Very dark grey for general text */
    --page-gdpr-text-light: #FFFFFF; /* White for contrast on dark backgrounds */
    --page-gdpr-link-color: #0086b3; /* Darker blue for links */
    --page-gdpr-background-light: #f9f9f9;
}

.page-gdpr {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-gdpr-text-dark);
    background-color: var(--page-gdpr-background-light);
}

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

.page-gdpr__hero {
    background: linear-gradient(135deg, var(--page-gdpr-primary-color), var(--page-gdpr-secondary-color));
    color: var(--page-gdpr-text-dark); /* Ensure contrast on gradient */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-gdpr__hero-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: var(--page-gdpr-text-dark);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.page-gdpr__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: var(--page-gdpr-text-dark);
}

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

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

.page-gdpr__section:last-of-type {
    border-bottom: none;
}

.page-gdpr__section-title {
    font-size: 2.5em;
    color: var(--page-gdpr-secondary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-gdpr__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--page-gdpr-primary-color);
    margin: 15px auto 0 auto;
    border-radius: 2px;
}

.page-gdpr__list {
    list-style: disc inside;
    margin-left: 20px;
    padding: 0;
    font-size: 1.1em;
}

.page-gdpr__list li {
    margin-bottom: 10px;
    color: var(--page-gdpr-text-dark);
}

.page-gdpr__list strong {
    color: var(--page-gdpr-secondary-color);
}

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

.page-gdpr__link {
    color: var(--page-gdpr-link-color);
    text-decoration: none;
    font-weight: bold;
}

.page-gdpr__link:hover {
    text-decoration: underline;
    color: var(--page-gdpr-primary-color);
}

.page-gdpr__button {
    display: inline-block;
    background-color: var(--page-gdpr-primary-color);
    color: var(--page-gdpr-text-dark);
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    margin-top: 30px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-gdpr__button:hover {
    background-color: #e6c200; /* Slightly darker gold */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

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

    .page-gdpr__hero-description {
        font-size: 1em;
    }

    .page-gdpr__section-title {
        font-size: 2em;
    }

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

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

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

    .page-gdpr__section-title {
        font-size: 1.6em;
    }

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