/* style/gdpr.css */

/* General page styling, ensuring text color contrasts with shared body background (dark) */
.page-gdpr {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #f0f0f0; /* Light text for dark background from shared.css */
    background-color: transparent; /* Inherit from body, which is dark */
}

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

.page-gdpr__section {
    padding: 60px 0;
    text-align: center;
}

.page-gdpr__dark-section {
    background-color: #1A202C; /* Primary brand color */
    color: #ffffff;
}

.page-gdpr__section-title {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #FFD700; /* Auxiliary brand color */
    font-weight: bold;
}

.page-gdpr__subsection-title {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #FFD700; /* Auxiliary brand color */
}

.page-gdpr__content-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    font-size: 1.1em;
}

.page-gdpr__content-block p {
    margin-bottom: 15px;
}

.page-gdpr__list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.page-gdpr__list li {
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #FFD700;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    text-align: left;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-gdpr__list-title {
    color: #FFD700;
    font-size: 1.3em;
    margin-top: 0;
    margin-bottom: 10px;
}

/* Hero Section */
.page-gdpr__hero-section {
    position: relative;
    padding: 100px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Fixed header spacing */
}