/* style/gdpr.css */

/* Base styling for the GDPR page content */
.page-gdpr {
    font-family: 'Arial', sans-serif;
    color: #ffffff; /* White text for readability on dark background */
    background-color: #1a1a1a; /* Dark background */
    line-height: 1.6;
    padding-bottom: 50px; /* Space for footer */
}

/* Container for content width */
.page-gdpr-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-gdpr-hero {
    background: linear-gradient(135deg, #8B0000 0%, #FFD700 100%); /* Deep Red to Gold gradient */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-gdpr-title {
    font-size: 3.5em;
    color: #ffffff; /* White title on gradient */
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
}

.page-gdpr-subtitle {
    font-size: 1.2em;
    color: #f0f0f0; /* Slightly off-white for subtitle */
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-gdpr-hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    margin-top: 30px;
}

/* General Section Styling */
.page-gdpr-section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-gdpr-heading {
    font-size: 2.5em;
    color: #FFD700; /* Gold heading */
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 15px;
}

.page-gdpr-heading::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #8B0000; /* Deep Red accent under heading */
    border-radius: 2px;
}

.page-gdpr-section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #e0e0e0;
    text-align: justify;
}

/* Data Collection Grid */
.page-gdpr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-gdpr-card {
    background-color: #2a2a2a; /* Slightly lighter dark background for cards */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-gdpr-card:hover {
    transform: translateY(-5px);
    background-color: #3a3a3a;
}

.page-gdpr-card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(1.2); /* Make icons stand out */
}

.page-gdpr-card h3 {
    font-size: 1.5em;
    color: #FFD700; /* Gold for card titles */
    margin-bottom: 15px;
}

.page-gdpr-card p {
    font-size: 1em;
    color: #c0c0c0;
    text-align: center;
}

/* Lists */
.page-gdpr-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-gdpr-list li {
    background-color: #2a2a2a;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    font-size: 1.1em;
    color: #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-gdpr-list li::before {
    content: '✔'; /* Checkmark icon */
    color: #FFD700; /* Gold checkmark */
    font-weight: bold;
    margin-right: 15px;
    font-size: 1.2em;
}

.page-gdpr-rights-list li::before {
    content: '➔'; /* Arrow for rights list */
    color: #8B0000; /* Deep red arrow */
}


/* Full width images */
.page-gdpr-image-full {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 40px auto;
    display: block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Links */
.page-gdpr-link {
    color: #FFD700; /* Gold links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-gdpr-link:hover {
    color: #ffffff; /* White on hover */
    text-decoration: underline;
}

/* Call to Action Section */
.page-gdpr-cta {
    background-color: #8B0000; /* Deep Red background for CTA */
    padding: 60px 0;
    text-align: center;
}

.page-gdpr-cta-heading {
    color: #FFD700; /* Gold heading on red background */
    margin-bottom: 25px;
}
.page-gdpr-cta-heading::after {
    background-color: #FFD700; /* Gold accent for CTA heading */
}

.page-gdpr-cta p {
    color: #f0f0f0;
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.page-gdpr-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #8B0000; /* Deep Red text on button */
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr-button:hover {
    background-color: #ffffff; /* White on hover */
    color: #8B0000;
    transform: translateY(-3px);
}

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

    .page-gdpr-heading {
        font-size: 2em;
    }

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

    .page-gdpr-section {
        padding: 40px 0;
    }

    .page-gdpr-hero {
        padding: 60px 0;
    }
}

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

    .page-gdpr-subtitle {
        font-size: 1em;
    }

    .page-gdpr-heading {
        font-size: 1.8em;
    }

    .page-gdpr-card {
        padding: 20px;
    }

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

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