/* style/gdpr.css */

/* Base styles for the page content, ensuring it respects the shared header offset */
.page-gdpr {
    padding-top: var(--header-offset, 120px); /* Ensures content starts below the fixed header */
    color: #333333; /* Dark text for readability on a light background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Container for sections to apply max-width and center them */
.page-gdpr__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section Styling */
.page-gdpr__hero-section {
    position: relative;
    text-align: center;
    color: #ffffff; /* Light text for hero section */
    background-color: #0A0A0A; /* Dark background for the hero section */
    padding: 80px 20px 40px;
    overflow: hidden; /* Ensure image doesn't overflow */
}

.page-gdpr__hero-container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.page-gdpr__hero-title {
    font-size: 3.5em; /* Large font size for impact */
    color: #FFD700; /* Golden color for title */
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
}

.page-gdpr__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0; /* Slightly off-white for description */
}

.page-gdpr__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Make background image subtle */
    z-index: 0;
}

.page-gdpr__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-gdpr__hero-cta-button {
    display: inline-block;
    background-color: #FFD700; /* Golden button */
    color: #0A0A0A; /* Dark text on golden button */
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 20px;
}

.page-gdpr__hero-cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    color: #000000;
}

/* General Section Styling */
.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: #0A0A0A; /* Dark title */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-gdpr__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

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

/* Content Block Styling (for sub-sections like data minimization, security) */
.page-gdpr__content-block {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-gdpr__content-block-title {
    font-size: 1.8em;
    color: #0A0A0A;
    margin-bottom: 20px;
    font-weight: bold;
}

/* List Styling */
.page-gdpr__list {
    list-style: none; /* Remove default bullet points */
    padding-left: 0;
    margin-bottom: 20px;
}

.page-gdpr__list-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.page-gdpr__list-item::before {
    content: '✅'; /* Custom bullet point */
    position: absolute;
    left: 0;
    color: #FFD700; /* Golden checkmark */
    font-size: 1.2em;
    top: 0;
}

/* Call to Action Button Styling (general) */
.page-gdpr__cta-button {
    display: inline-block;
    background-color: #0A0A0A; /* Dark button */
    color: #FFD700; /* Golden text on dark button */
    padding: 12px 25px;
    font-size: 1em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 20px;
    border: 2px solid #0A0A0A;
}

.page-gdpr__cta-button:hover {
    background-color: #FFD700; /* Golden background on hover */
    color: #0A0A0A; /* Dark text on golden hover */
    border-color: #FFD700;
}

.page-gdpr__cta-button--primary {
    background-color: #FFD700;
    color: #0A0A0A;
    border-color: #FFD700;
}

.page-gdpr__cta-button--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
}

/* Link Styling */
.page-gdpr__link {
    color: #FFD700; /* Golden links */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-gdpr__link:hover {
    color: #e6c200; /* Slightly darker gold on hover */
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-gdpr {
        padding-top: var(--header-offset, 80px); /* Adjust padding for mobile header */
    }

    .page-gdpr__hero-title {
        font-size: 2.2em;
    }

    .page-gdpr__hero-description,
    .page-gdpr__paragraph,
    .page-gdpr__list-item {
        font-size: 1em;
    }

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

    .page-gdpr__content-block-title {
        font-size: 1.4em;
    }

    .page-gdpr__hero-cta-button,
    .page-gdpr__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    /* Mobile content area images must be constrained */
    .page-gdpr__image {
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }

    /* Global img rule for mobile to prevent overflow */
    .page-gdpr img {
        max-width: 100%;
        height: auto;
    }
}

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