/* style/gdpr.css */

/* Custom color variables from the provided palette */
:root {
    --page-gdpr-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --page-gdpr-card-bg: #11271B;
    --page-gdpr-background: #08160F;
    --page-gdpr-text-main: #F2FFF6;
    --page-gdpr-text-secondary: #A7D9B8;
    --page-gdpr-border: #2E7A4E;
    --page-gdpr-glow: #57E38D;
    --page-gdpr-gold: #F2C14E;
    --page-gdpr-deep-green: #0A4B2C;
}

.page-gdpr {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--page-gdpr-text-main); /* Default text color for the page */
    background-color: var(--page-gdpr-background); /* Page background */
}

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

/* Hero Section */
.page-gdpr__hero-section {
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    background-color: var(--page-gdpr-deep-green); /* Use a brand color for the section background */
    color: var(--page-gdpr-text-main);
}

.page-gdpr__hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* Max width for the image */
    margin-bottom: 30px;
}

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

.page-gdpr__hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-gdpr__main-title {
    font-size: clamp(2.2rem, 4vw, 3rem); /* H1 font size with clamp */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--page-gdpr-gold); /* Using gold for H1 for emphasis */
}

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

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

.page-gdpr__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    color: var(--page-gdpr-gold); /* Consistent title color */
}

.page-gdpr__sub-title {
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--page-gdpr-glow); /* Subtitle color */
}

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

/* Background variations for sections */
.page-gdpr__dark-bg {
    background-color: var(--page-gdpr-background);
    color: var(--page-gdpr-text-main);
}

.page-gdpr__light-bg {
    background-color: var(--page-gdpr-card-bg); /* Using card bg for 'light' section as it's lighter than main background */
    color: var(--page-gdpr-text-main);
}

/* Grid Layout for cards */
.page-gdpr__grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-gdpr__card {
    background-color: var(--page-gdpr-background); /* Card background is the main background */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--page-gdpr-border);
    color: var(--page-gdpr-text-main);
}

.page-gdpr__card-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--page-gdpr-glow);
}

.page-gdpr__card p {
    font-size: 0.95rem;
    color: var(--page-gdpr-text-secondary);
}

/* Buttons */
.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow long words to break */
    box-sizing: border-box; /* Include padding in width */
}