:root {
    --primary-color: #C61F1F;
    --secondary-color: #E53030;
    --button-gradient: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
    --card-bg-color: #2A1212;
    --bg-color: #140C0C;
    --text-main-color: #FFF1E8;
    --border-color: #6A1E1E;
    --gold-color: #F3C54D;
    --deep-red-color: #7E0D0D;
}

.page-gdpr {
    background-color: var(--bg-color); /* #140C0C */
    color: var(--text-main-color); /* #FFF1E8 */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: 10px; /* Small top padding for the first section, body handles --header-offset */
}

.page-gdpr__hero-section {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column; /* Image on top, content below */
    align-items: center;
    text-align: center;
    padding: 20px 0 40px;
    background: linear-gradient(180deg, var(--deep-red-color) 0%, var(--bg-color) 100%); /* #7E0D0D to #140C0C */
}

.page-gdpr__hero-image {
    width: 100%;
    max-width: 1200px; /* Max width for the image */
    height: auto;
    object-fit: cover;
    margin-bottom: 20px; /* Space between image and content */
    border-radius: 8px;
}

.page-gdpr__hero-content {
    max-width: 900px;
    padding: 0 20px;
}

.page-gdpr__main-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem); /* Responsive font size for H1 */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--gold-color); /* #F3C54D */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-gdpr__cta-button {
    display: inline-block;
    padding: 12px 25px;
    background: var(--button-gradient); /* linear-gradient(180deg, #FFB04A 0%, #D86A14 100%) */
    color: var(--text-main-color);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.page-gdpr__cta-button--secondary {
    background: var(--primary-color); /* #C61F1F */
    margin-left: 15px;
}

.page-gdpr__cta-button--secondary:hover {
    background: var(--secondary-color); /* #E53030 */
}


.page-gdpr__section {
    padding: 40px 20px;
    margin: 0 auto;
    max-width: 1200px;
    border-bottom: 1px solid var(--border-color); /* #6A1E1E */
}

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

.page-gdpr__section-title {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    color: var(--primary-color); /* #C61F1F */
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.page-gdpr__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold-color); /* #F3C54D */
    border-radius: 2px;
}

.page-gdpr__content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
}

.page-gdpr__image {
    width: 100%;
    max-width: 600px; /* Example max-width, ensure minimum 200x200px */
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid var(--border-color); /* #6A1E1E */
}

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

.page-gdpr__commitment-list,
.page-gdpr__data-handling-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    width: 100%;
    max-width: 800px;
}

.page-gdpr__list-item {
    background-color: var(--card-bg-color); /* #2A1212 */
    padding: 15px 20px;
    margin-bottom: 10px;
    border-left: 5px solid var(--primary-color); /* #C61F1F */
    border-radius: 5px;
    font-size: 1rem;
    color: var(--text-main-color);
}

.page-gdpr__list-item strong {
    color: var(--gold-color); /* #F3C54D */
}

.page-gdpr__rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.page-gdpr__card {
    background-color: var(--card-bg-color); /* #2A1212 */
    border: 1px solid var(--border-color); /* #6A1E1E */
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-gdpr__card-title {
    font-size: 1.3rem;
    color: var(--primary-color); /* #C61F1F */
    margin-bottom: 10px;
}

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

.page-gdpr__contact-info {
    background-color: var(--card-bg-color); /* #2A1212 */
    border: 1px solid var(--border-color); /* #6A1E1E */
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    margin-top: 30px;
}

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

.page-gdpr__contact-item a {
    color: var(--gold-color); /* #F3C54D */
    text-decoration: none;
}

.page-gdpr__contact-item a:hover {
    text-decoration: underline;
}

.page-gdpr__link-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--deep-red-color); /* #7E0D0D */
    color: var(--text-main-color);
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.page-gdpr__link-button:hover {
    background-color: var(--primary-color); /* #C61F1F */
}

.page-gdpr__faq-list {
    margin-top: 30px;
}

.page-gdpr__faq-item {
    background-color: var(--card-bg-color); /* #2A1212 */
    border: 1px solid var(--border-color); /* #6A1E1E */
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
}

.page-gdpr__faq-question {
    font-size: 1.2rem;
    color: var(--primary-color); /* #C61F1F */
    cursor: pointer;
    margin-bottom: 10px;
    position: relative;
    padding-right: 30px;
}

.page-gdpr__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--gold-color);
    transition: transform 0.3s ease;
}

.page-gdpr__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-gdpr__faq-answer {
    font-size: 1rem;
    color: var(--text-main-color);
    display: none;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--border-color); /* #6A1E1E */
}

.page-gdpr__faq-answer.active {
    display: block;
}

/* Ensure images are not too small in content sections */
.page-gdpr__section img {
    min-width: 200px;
    min-height: 200px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-gdpr__hero-section {
        padding: 15px 0 30px;
    }

    .page-gdpr__hero-content {
        padding: 0 15px;
    }

    .page-gdpr__main-title {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
    }

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

    .page-gdpr__cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .page-gdpr__cta-button--secondary {
        margin-left: 0; /* Stack buttons on mobile */
        margin-top: 10px;
    }

    .page-gdpr__content-wrapper {
        flex-direction: column;
    }

    .page-gdpr__section {
        padding: 30px 15px;
    }

    .page-gdpr__section-title {
        font-size: clamp(1.3rem, 5vw, 2rem);
    }

    .page-gdpr__rights-grid {
        grid-template-columns: 1fr;
    }

    .page-gdpr__image {
        max-width: 100%; /* Ensure images don't overflow */
        height: auto;
        max-height: 400px; /* Example to prevent excessively tall images on mobile */
    }

    /* Mobile image overflow prevention */
    .page-gdpr__section img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-gdpr__hero-section {
        padding: 10px 0 20px;
    }

    .page-gdpr__main-title {
        font-size: clamp(1.3rem, 7vw, 1.8rem);
    }

    .page-gdpr__cta-button {
        display: block;
        width: fit-content;
        margin: 10px auto;
    }
    .page-gdpr__cta-button--secondary {
        margin-left: auto;
    }
}