:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --card-bg: #11271B;
    --background: #08160F;
    --text-main: #F2FFF6;
    --text-secondary: #A7D9B8;
    --border-color: #2E7A4E;
    --glow: #57E38D;
    --gold: #F2C14E;
    --divider: #1E3A2A;
    --deep-green: #0A4B2C;
}

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

/* Hero Section */
.page-gdpr__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
    background-color: var(--deep-green); /* Example background for hero */
}

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

.page-gdpr__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 500px; /* Ensure image fits wrapper */
}

.page-gdpr__hero-content {
    max-width: 900px;
    padding: 0 20px;
    color: var(--text-main); /* Light text on dark background */
}

.page-gdpr__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--gold); /* Use gold for main title for emphasis */
}

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

/* CTA Button */
.page-gdpr__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--button-gradient); /* Button color */
    color: var(--text-main); /* White text on button */
    border: none;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-gdpr__cta-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-gdpr__cta-button--primary {
    background: var(--button-gradient);
    color: var(--text-main);
}

.page-gdpr__cta-button--secondary {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.page-gdpr__cta-button--secondary:hover {
    background: var(--gold);
    color: var(--background);
}

/* General Section Styling */
.page-gdpr__section {
    padding: 60px 0;
    background-color: var(--background);
    color: var(--text-main);
}

.page-gdpr__section--gdpr-intro {
    background-color: var(--background);
}

.page-gdpr__section--compliance-commitment {
    background-color: var(--card-bg);
}

.page-gdpr__section--user-rights {
    background-color: var(--background);
}

.page-gdpr__section--faq {
    background-color: var(--card-bg);
}

.page-gdpr__section--contact {
    background-color: var(--background);
}

.page-gdpr__section--conclusion {
    background-color: var(--deep-green);
    color: var(--text-main);
}

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

.page-gdpr__heading {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--gold);
}

.page-gdpr__sub-heading {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 20px;
    color: var(--glow);
}

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

.page-gdpr__paragraph {
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.page-gdpr__list {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.page-gdpr__list-item {
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.page-gdpr__list-item strong {
    color: var(--text-main);
}

.page-gdpr__image {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    object-fit: cover;
    max-width: 800px; /* Example max-width */
}

.page-gdpr__link {
    color: var(--glow);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-gdpr__link:hover {
    color: var(--gold);
    text-decoration: underline;
}

/* FAQ Styling */
.page-gdpr__faq-list {
    margin-top: 30px;
}

.page-gdpr__faq-item {
    background-color: var(--deep-green);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid var(--divider);
}

.page-gdpr__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    color: var(--text-main);
    background-color: var(--card-bg);
    border-bottom: 1px solid var(--divider);
}

.page-gdpr__faq-item[open] .page-gdpr__faq-question {
    border-bottom: 1px solid var(--divider);
}

.page-gdpr__faq-qtext {
    flex-grow: 1;
    color: var(--text-main);
}

.page-gdpr__faq-toggle {
    font-size: 1.5rem;
    margin-left: 15px;
    color: var(--glow);
}

.page-gdpr__faq-item details > summary {
    list-style: none;
}
.page-gdpr__faq-item details > summary::-webkit-details-marker {
    display: none;
}

.page-gdpr__faq-answer {
    padding: 20px;
    padding-top: 0;
    color: var(--text-secondary);
}

.page-gdpr__faq-answer .page-gdpr__paragraph,
.page-gdpr__faq-answer .page-gdpr__list {
    margin-top: 15px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .page-gdpr {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-gdpr__hero-section {
        padding: 10px 0 40px 0;
    }

    .page-gdpr__main-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .page-gdpr__description {
        font-size: 1rem;
    }

    .page-gdpr__cta-button {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
        font-size: 1rem;
    }

    .page-gdpr__section {
        padding: 40px 0;
    }

    .page-gdpr__heading {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        margin-bottom: 30px;
    }

    .page-gdpr__sub-heading {
        font-size: clamp(1.3rem, 5vw, 1.8rem);
        margin-top: 20px;
        margin-bottom: 15px;
    }

    .page-gdpr__container {
        padding: 0 15px;
    }

    /* Images responsiveness */
    .page-gdpr img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        object-fit: cover;
    }

    /* Image containers responsiveness */
    .page-gdpr__hero-image-wrapper,
    .page-gdpr__section,
    .page-gdpr__content-block,
    .page-gdpr__container,
    .page-gdpr__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important; /* Ensure no overflow */
    }

    /* Adjust specific elements for padding if needed, e.g., hero content */
    .page-gdpr__hero-content {
        padding: 0 15px;
    }

    /* FAQ specific for mobile */
    .page-gdpr__faq-question {
        font-size: 1rem;
        padding: 15px;
    }

    .page-gdpr__faq-answer {
        padding: 15px;
        padding-top: 0;
    }
}