/* style/gdpr.css */

/* Base styles for the GDPR page content */
.page-gdpr {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: transparent; /* Body background handled by shared.css */
    padding-top: var(--header-offset, 120px); /* Fixed header spacing */
}

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

.page-gdpr__link {
    color: #ffffff; /* Link color for dark background */
    text-decoration: underline;
}

.page-gdpr__link:hover {
    color: #017439; /* Brand color on hover */
}

/* Section styling */
.page-gdpr__content-section {
    padding: 60px 0;
}

.page-gdpr__dark-bg {
    background-color: #017439; /* Brand color as background */
    color: #ffffff; /* White text on brand background */
}

.page-gdpr__section-title {
    font-size: 2.5em;
    color: #ffffff; /* White title for dark background */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-gdpr__dark-bg .page-gdpr__section-title {
    color: #ffffff; /* Ensure white title on dark brand background */
}

.page-gdpr__sub-title {
    font-size: 1.8em;
    color: #ffffff; /* White subtitle for dark background */
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-gdpr__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #ffffff; /* White paragraph text for dark background */
}

.page-gdpr__paragraph--center {
    text-align: center;
}

/* Adjust text color for sections with lighter backgrounds if needed, though most are dark or brand colored */
.page-gdpr__content-section:not(.page-gdpr__dark-bg) .page-gdpr__paragraph,
.page-gdpr__content-section:not(.page-gdpr__dark-bg) .page-gdpr__sub-title,
.page-gdpr__content-section:not(.page-gdpr__dark-bg) .page-gdpr__list-item,
.page-gdpr__content-section:not(.page-gdpr__dark-bg) .page-gdpr__link {
    color: #ffffff; /* Default for body background which is dark */
}

.page-gdpr__content-section:not(.page-gdpr__dark-bg) .page-gdpr__section-title {
    color: #ffffff; /* Default for body background which is dark */
}

/* Hero Section */
.page-gdpr__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    background-color: #0a0a0a; /* Dark background for hero */
    color: #ffffff;
    padding: 80px 20px;
    overflow: hidden;
}

.page-gdpr__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin-right: 40px;
}

.page-gdpr__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
}

.page-gdpr__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    line-height: 1.5;
}

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

.page-gdpr__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Subtle overlay */
    filter: none; /* Ensure no CSS filter */
}

/* Buttons */
.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    margin: 10px;
    cursor: pointer;
    box-sizing: border-box; /* Ensure padding doesn't cause overflow */
}

.page-gdpr__btn-primary {
    background-color: #C30808; /* Custom color for register/login */
    color: #FFFF00; /* Custom font color */
    border: 2px solid #C30808;
}

.page-gdpr__btn-primary:hover {
    background-color: #a00606;
    border-color: #a00606;
}