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

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

.page-gdpr__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles header offset */
    overflow: hidden;
    background-color: var(--gdpr-bg-dark);
}

.page-gdpr__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    margin-bottom: 30px;
    position: relative;
}

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

.page-gdpr__hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 20px;
    background: rgba(17, 39, 27, 0.8);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.page-gdpr__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    color: var(--gdpr-gold-color);
    margin-bottom: 15px;
    line-height: 1.2;
    font-weight: bold;
    letter-spacing: 0.05em;
}

.page-gdpr__description {
    font-size: 1.1rem;
    color: var(--gdpr-text-secondary);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-gdpr__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--gdpr-gold-color);
    margin-bottom: 25px;
    text-align: center;
    font-weight: bold;
    line-height: 1.3;
}

.page-gdpr__sub-title {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    color: var(--gdpr-text-main);
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-gdpr__content-section {
    padding: 50px 20px;
    background-color: var(--gdpr-bg-dark);
    border-bottom: 1px solid var(--gdpr-divider-color);
}

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

.page-gdpr__container--flex {
    display: flex;
    gap: 30px;
    align-items: center;
}

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

.page-gdpr__image-content {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
}

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

.page-gdpr__grid-container--two-cols {
    grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
}

.page-gdpr__card {
    background-color: var(--gdpr-card-bg);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--gdpr-border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-gdpr__card-title {
    font-size: 1.5rem;
    color: var(--gdpr-gold-color);
    margin-bottom: 15px;
    font-weight: 700;
}

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

.page-gdpr__list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-gdpr__list-item {
    background-color: var(--gdpr-card-bg);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border-left: 5px solid var(--gdpr-primary-color);
}

.page-gdpr__list-item p {
    color: var(--gdpr-text-secondary);
    font-size: 1rem;
}

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

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

.page-gdpr__contact-section {
    padding: 60px 20px;
    background-color: var(--gdpr-card-bg);
}

.page-gdpr__contact-content {
    flex: 1;
}

.page-gdpr__contact-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-gdpr__contact-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr__contact-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    color: var(--gdpr-text-secondary);
}

.page-gdpr__contact-list li {
    margin-bottom: 10px;
    font-size: 1rem;
}

.page-gdpr__faq-section {
    padding: 60px 20px;
    background-color: var(--gdpr-bg-dark);
}

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

.page-gdpr__faq-item {
    background-color: var(--gdpr-card-bg);
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.page-gdpr__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--gdpr-text-main);
    background-color: var(--gdpr-deep-green);
    border-bottom: 1px solid var(--gdpr-divider-color);
    transition: background-color 0.3s ease;
}

.page-gdpr__faq-question:hover {
    background-color: var(--gdpr-primary-color);
}

.page-gdpr__faq-question::-webkit-details-marker {
    display: none;
}

.page-gdpr__faq-question::marker {
    display: none;
}

.page-gdpr__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    color: var(--gdpr-gold-color);
}

.page-gdpr__faq-answer {
    padding: 20px;
    font-size: 1rem;
    color: var(--gdpr-text-secondary);
    background-color: var(--gdpr-card-bg);
}

.page-gdpr__faq-answer p {
    margin-bottom: 0;
}

.page-gdpr__cta-section {
    padding: 80px 20px;
    text-align: center;
    background-color: var(--gdpr-deep-green);
}

.page-gdpr__cta-section .page-gdpr__section-title {
    color: var(--gdpr-gold-color);
}

.page-gdpr__cta-section .page-gdpr__text-block {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    margin: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-gdpr__btn-primary {
    background: var(--gdpr-button-gradient);
    color: var(--gdpr-text-main);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.page-gdpr__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
    opacity: 0.9;
}

.page-gdpr__btn-secondary {
    background-color: transparent;
    color: var(--gdpr-gold-color);
    border: 2px solid var(--gdpr-gold-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__btn-secondary:hover {
    background-color: var(--gdpr-gold-color);
    color: var(--gdpr-bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* --- Responsive Styles --- */

/* All images base responsive */
.page-gdpr img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

    .page-gdpr__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important;
    }

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

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

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

    .page-gdpr__sub-title {
        font-size: clamp(1.2rem, 4vw, 1.5rem);
    }

    .page-gdpr__content-section,
    .page-gdpr__contact-section,
    .page-gdpr__faq-section,
    .page-gdpr__cta-section {
        padding: 30px 15px;
    }

    .page-gdpr__container {
        padding-left: 0;
        padding-right: 0;
    }

    .page-gdpr__container--flex {
        flex-direction: column;
        gap: 20px;
    }

    .page-gdpr__contact-content,
    .page-gdpr__contact-image-wrapper {
        flex: none;
        width: 100%;
    }

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

    .page-gdpr__grid-container--two-cols {
        grid-template-columns: 1fr;
    }

    .page-gdpr__card,
    .page-gdpr__list-item,
    .page-gdpr__faq-item {
        padding: 20px;
        margin-bottom: 10px;
    }

    .page-gdpr__faq-question {
        font-size: 1rem;
        padding: 15px;
    }

    .page-gdpr__faq-answer {
        padding: 15px;
        font-size: 0.9rem;
    }

    /* Mobile image responsiveness */
    .page-gdpr img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-gdpr__hero-image-wrapper,
    .page-gdpr__contact-image-wrapper,
    .page-gdpr__image-content,
    .page-gdpr__container,
    .page-gdpr__card,
    .page-gdpr__list-item,
    .page-gdpr__faq-item,
    .page-gdpr__cta-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Mobile button responsiveness */
    .page-gdpr__btn-primary,
    .page-gdpr__btn-secondary,
    .page-gdpr a[class*="button"],
    .page-gdpr a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-bottom: 10px !important;
    }

    .page-gdpr__cta-section a:last-child {
        margin-bottom: 0 !important;
    }

    .page-gdpr__cta-buttons,
    .page-gdpr__button-group,
    .page-gdpr__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-direction: column !important;
        gap: 10px;
    }
}