/* style/gdpr.css */

/* Custom properties for colors */
:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #000080; /* Dark Blue */
    --text-light: #ffffff;
    --text-dark: #333333;
    --background-dark: #0a0a0a; /* From shared.css body background */
    --card-background-dark-theme: rgba(255, 255, 255, 0.08); /* Slightly transparent white for cards on dark background */
    --border-color-dark-theme: rgba(255, 255, 255, 0.15);
}

/* Base styles for the GDPR page */
.page-gdpr {
    color: var(--text-light); /* Light text for dark body background */
    background-color: var(--background-dark); /* Ensure consistency if section backgrounds are not set */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-bottom: 60px; /* Add some padding at the bottom */
}

/* Ensure the first section accounts for the fixed header */
.page-gdpr__hero-section {
    position: relative;
    width: 100%;
    padding: 80px 20px;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    background: linear-gradient(135deg, var(--secondary-color) 0%, #000050 100%); /* Dark blue gradient */
    text-align: center;
    color: var(--text-light);
    overflow: hidden; /* Prevent content overflow */
}

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

.page-gdpr__main-title {
    font-size: 3.2em;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--primary-color); /* Gold title */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.page-gdpr__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

.page-gdpr__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-gdpr__cta-button {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--primary-color); /* Gold button */
    color: var(--secondary-color); /* Dark blue text on gold */
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    border: none;
    cursor: pointer;
}

.page-gdpr__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}