/* style/gdpr.css */

/* Root variables for colors */
:root {
    --gdpr-bg-primary: #08160F;
    --gdpr-card-bg: #11271B;
    --gdpr-text-main: #F2FFF6;
    --gdpr-text-secondary: #A7D9B8;
    --gdpr-btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --gdpr-border-color: #2E7A4E;
    --gdpr-glow-color: #57E38D;
    --gdpr-gold-color: #F2C14E;
    --gdpr-divider-color: #1E3A2A;
    --gdpr-deep-green: #0A4B2C;
}

/* Main page container */
.page-gdpr {
    background-color: var(--gdpr-bg-primary); /* Main background */
    color: var(--gdpr-text-main); /* Main text color for contrast */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    font-size: 1rem;
}

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

.page-gdpr__dark-bg {
    background-color: var(--gdpr-bg-primary);
    color: var(--gdpr-text-main);
}

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

/* Hero Section */
.page-gdpr__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    padding-bottom: 60px; /* Space below content */
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    background-color: var(--gdpr-bg-primary);
}

.page-gdpr__hero-image-wrapper {
    width: 100%;
    max-height: 675px; /* Limit height for hero image */
    overflow: hidden;
}

.page-gdpr__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-gdpr__hero-content {
    text-align: center;
    padding: 40px 20px 0; /* Padding from image */
    max-width: 800px;
    margin-top: -80px; /* Overlap slightly with image for visual flow */
    position: relative;
    z-index: 1;
    background-color: var(--gdpr-bg-primary); /* Ensure background for text */
    padding-top: 80px; /* Adjust for negative margin */
    border-radius: 15px 15px 0 0;
}

.page-gdpr__main-title {
    font-size: clamp(2rem, 4vw, 3rem); /* Responsive font size */
    color: var(--gdpr-text-main);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.3); /* Soft glow */
}

.page-gdpr__description {
    font-size: 1.15rem;
    color: var(--gdpr-text-secondary);
    margin-bottom: 30px;
}

/* Titles */
.page-gdpr__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--gdpr-text-main);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(87, 227, 141, 0.2);
}

.page-gdpr__sub-section-title {
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    color: var(--gdpr-text-main);
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: 600;
}

.page-gdpr__card-title,
.page-gdpr__list-title {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: var(--gdpr-gold-color); /* Use gold for sub-titles */
    margin-bottom: 15px;
    font-weight: 600;
}

/* Text blocks */
.page-gdpr__text-block {
    margin-bottom: 40px;
}

.page-gdpr__text-block p {
    margin-bottom: 15px;
    color: var(--gdpr-text-main);
}