/* style/gdpr.css */

/* Variables for consistency */
:root {
    --page-gdpr-primary-color: #007bff;
    --page-gdpr-secondary-color: #ffc107;
    --page-gdpr-dark-text: #333;
    --page-gdpr-light-text: #fff;
    --page-gdpr-background-light: #f8f9fa;
    --page-gdpr-background-dark: #212529;
    --page-gdpr-border-color: #e9ecef;
}

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

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

/* Hero Section */
.page-gdpr__hero {
    background: linear-gradient(135deg, var(--page-gdpr-primary-color) 0%, #0056b3 100%); /* Darker blue for gradient */
    color: var(--page-gdpr-light-text);
    padding: 80px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.page-gdpr__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

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

.page-gdpr__subtitle {
    font-size: 1.5em;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.page-gdpr__button {
    display: inline-block;
    background-color: var(--page-gdpr-secondary-color);
    color: var(--page-gdpr-dark-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.2s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

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

.page-gdpr__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.15;
    overflow: hidden;
}

.page-gdpr__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(50%);
}

/* General Section Styling */
.page-gdpr__section {
    padding: 60px 0;
    border-bottom: 1px solid var(--page-gdpr-border-color);
}

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

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

.page-gdpr__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: var(--page-gdpr-dark-text);
}

.page-gdpr__text strong {
    color: var(--page-gdpr-primary-color);
}

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

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

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

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

/* Your Rights Grid */
.page-gdpr__your-rights {
    background-color: var(--page-gdpr-background-dark);
    color: var(--page-gdpr-light-text);
}

.page-gdpr__your-rights .page-gdpr__section-title {
    color: var(--page-gdpr-secondary-color);
}

.page-gdpr__your-rights .page-gdpr__text {
    color: var(--page-gdpr-light-text);
}

.page-gdpr__rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-gdpr__right-item {
    background-color: #343a40; /* Slightly lighter dark background */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.page-gdpr__right-item h3 {
    color: var(--page-gdpr-secondary-color);
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-gdpr__right-item p {
    font-size: 1em;
    color: rgba(255, 255, 255, 0.8);
}

/* Contact Section */
.page-gdpr__contact {
    text-align: center;
}

.page-gdpr__contact .page-gdpr__text {
    text-align: center;
}

.page-gdpr__button--secondary {
    background-color: var(--page-gdpr-primary-color);
    color: var(--page-gdpr-light-text);
    margin-top: 30px;
}

.page-gdpr__button--secondary:hover {
    background-color: #0056b3; /* Darker primary color */
    transform: translateY(-2px);
}

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

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

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

    .page-gdpr__text,
    .page-gdpr__list li,
    .page-gdpr__right-item p {
        font-size: 1em;
    }

    .page-gdpr__rights-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-gdpr__hero {
        padding: 60px 0;
    }

    .page-gdpr__title {
        font-size: 2em;
    }

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

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

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

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