:root {
    --primary-color: #F2C14E;
    --secondary-color: #FFD36B;
    --button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    --card-bg: #111111;
    --background: #0A0A0A;
    --text-main: #FFF6D6;
    --border-color: #3A2A12;
    --glow-color: #FFD36B;
}

.page-gdpr {
    background-color: var(--background);
    color: var(--text-main);
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-bottom: 40px;
}

.page-gdpr__hero-section {
    padding-top: 10px;
    background-color: var(--card-bg);
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.page-gdpr__hero-image-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 20px auto;
    overflow: hidden;
    border-radius: 8px;
}

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

.page-gdpr__hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.page-gdpr__main-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

.page-gdpr__intro-description {
    font-size: 1.1rem;
    line-height: 1.5;
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-main);
}

.page-gdpr__content-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.page-gdpr__content-section:last-of-type {
    border-bottom: none;
}

.page-gdpr__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.page-gdpr__container--reverse {
    flex-direction: column-reverse;
}

.page-gdpr__section-title {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--secondary-color);
    text-align: center;
}

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

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

.page-gdpr__list-item {
    margin-bottom: 10px;
    font-size: 1rem;
}

.page-gdpr__image-wrapper {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-gdpr__image-wrapper--center {
    max-width: 1000px;
}

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

.page-gdpr__text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-gdpr__contact-button {
    display: inline-block;
    padding: 12px 30px;
    background: var(--button-gradient);
    color: var(--background);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    text-align: center;
    max-width: 250px;
    margin: 20px auto 0 auto;
    border: none;
    cursor: pointer;
}

.page-gdpr__contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 211, 107, 0.4);
}

/* Responsive Styles */
@media (min-width: 768px) {
    .page-gdpr__container {
        flex-direction: row;
        align-items: center;
        gap: 50px;
    }

    .page-gdpr__container--reverse {
        flex-direction: row-reverse;
    }

    .page-gdpr__text-content,
    .page-gdpr__image-wrapper {
        flex: 1;
    }

    .page-gdpr__section-title {
        text-align: left;
    }
}

@media (max-width: 849px) {
    .page-gdpr__hero-image-wrapper {
        max-width: 100%;
        border-radius: 0;
    }
    .page-gdpr__hero-image {
        max-width: 100%;
        height: auto;
    }
    .page-gdpr__main-title {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }
    .page-gdpr__intro-description {
        font-size: 1rem;
    }
    .page-gdpr__section-title {
        font-size: clamp(1.3rem, 5vw, 2rem);
    }
    .page-gdpr__paragraph,
    .page-gdpr__list-item {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .page-gdpr__container {
        flex-direction: column;
    }
    .page-gdpr__container--reverse {
        flex-direction: column;
    }
    /* Ensure content area images are responsive and not too small */
    .page-gdpr__content-image {
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
        object-fit: cover;
    }
    .page-gdpr__image-wrapper {
        min-width: 200px;
        min-height: 200px;
    }
}

@media (max-width: 549px) {
    .page-gdpr__hero-content {
        padding: 0 15px;
    }
    .page-gdpr__main-title {
        font-size: clamp(1.3rem, 7vw, 2.2rem);
    }
    .page-gdpr__section-title {
        font-size: clamp(1.2rem, 6vw, 1.8rem);
    }
    .page-gdpr__paragraph,
    .page-gdpr__list-item {
        font-size: 0.9rem;
    }
    .page-gdpr__list {
        margin-left: 15px;
    }
    .page-gdpr__contact-button {
        width: 100%;
        max-width: 300px;
        font-size: 1rem;
        padding: 10px 20px;
    }
}