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

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

/* Fixed header spacing - body already handles padding-top from shared.css */
/* Page sections should only have a small top padding, not var(--header-offset) */
.page-gdpr__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding */
    background-color: var(--gdpr-deep-green);
    color: var(--gdpr-text-main);
    text-align: center;
}

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

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

.page-gdpr__hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative; /* Ensure content is above any potential background layers */
    z-index: 1;
}

.page-gdpr__main-title {
    font-size: clamp(2em, 4vw, 3em);
    font-weight: 700;
    color: var(--gdpr-gold-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-gdpr__hero-description {
    font-size: 1.1em;
    color: var(--gdpr-text-secondary);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-gdpr__cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-gdpr__btn-primary {
    background: var(--gdpr-btn-gradient);
    color: var(--gdpr-text-main);
    border: 2px solid transparent;
}

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

.page-gdpr__btn-secondary {
    background-color: transparent;
    color: var(--gdpr-glow-color);
    border: 2px solid var(--gdpr-glow-color);
}

.page-gdpr__btn-secondary:hover {
    background-color: var(--gdpr-glow-color);
    color: var(--gdpr-bg-color);
}

.page-gdpr__content-section {
    padding: 60px 20px;
}

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

.page-gdpr__section-title {
    font-size: 2.2em;
    color: var(--gdpr-gold-color);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.page-gdpr__sub-title {
    font-size: 1.6em;
    color: var(--gdpr-glow-color);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

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

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

.page-gdpr__list-item {
    background-color: var(--gdpr-card-bg);
    border: 1px solid var(--gdpr-border-color);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    color: var(--gdpr-text-main);
}

.page-gdpr__list-item h3 {
    color: var(--gdpr-glow-color);
    font-size: 1.3em;
    margin-top: 0;
    margin-bottom: 10px;
}

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

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

.page-gdpr__dark-section {
    background-color: var(--gdpr-deep-green);
    color: var(--gdpr-text-main);
}

.page-gdpr__contact-info p {
    color: var(--gdpr-text-secondary);
    margin-bottom: 10px;
}

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

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

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

.page-gdpr__faq-item {
    background-color: var(--gdpr-card-bg);
    border: 1px solid var(--gdpr-border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    color: var(--gdpr-text-main);
}

.page-gdpr__faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    list-style: none;
    color: var(--gdpr-glow-color);
    font-weight: bold;
    font-size: 1.1em;
}

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

.page-gdpr__faq-qtext {
    flex-grow: 1;
}

.page-gdpr__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
}

.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
    content: "−";
}

.page-gdpr__faq-answer {
    padding: 0 20px 20px;
    color: var(--gdpr-text-secondary);
    font-size: 0.95em;
}

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

/* Text colors for specific elements */
.text-main {
    color: var(--gdpr-gold-color);
}

.text-secondary {
    color: var(--gdpr-text-secondary);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-gdpr__hero-section {
        padding: 40px 15px;
    }
    .page-gdpr__main-title {
        font-size: clamp(1.8em, 5vw, 2.5em);
    }
    .page-gdpr__section-title {
        font-size: 2em;
    }
    .page-gdpr__sub-title {
        font-size: 1.4em;
    }
}

@media (max-width: 768px) {
    .page-gdpr__hero-section {
        padding: 20px 15px;
        padding-top: 10px !important; /* Ensure small top padding on mobile */
    }
    .page-gdpr__hero-image-wrapper {
        margin-bottom: 20px;
    }
    .page-gdpr__hero-image {
        border-radius: 4px;
    }
    .page-gdpr__main-title {
        font-size: clamp(1.5em, 6vw, 2.2em);
        margin-bottom: 15px;
    }
    .page-gdpr__hero-description {
        font-size: 1em;
        margin-bottom: 20px;
    }
    .page-gdpr__cta-buttons {
        flex-direction: column;
        gap: 10px;
        padding: 0 15px;
    }
    .page-gdpr__btn-primary,
    .page-gdpr__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 10px 20px;
        font-size: 0.95em;
        border-radius: 20px;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-gdpr__content-section {
        padding: 40px 15px;
    }
    .page-gdpr__container {
        padding: 0 10px;
    }
    .page-gdpr__section-title {
        font-size: 1.8em;
        margin-bottom: 25px;
    }
    .page-gdpr__sub-title {
        font-size: 1.2em;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    .page-gdpr__text-block {
        font-size: 0.95em;
    }
    .page-gdpr__list-item {
        padding: 15px;
        margin-bottom: 10px;
    }
    .page-gdpr__list-item h3 {
        font-size: 1.1em;
    }
    .page-gdpr__list-item p {
        font-size: 0.9em;
    }
    .page-gdpr__image-inline {
        margin: 20px auto;
        border-radius: 4px;
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-gdpr__faq-item summary {
        padding: 15px;
        font-size: 1em;
    }
    .page-gdpr__faq-answer {
        padding: 0 15px 15px;
        font-size: 0.9em;
    }
    /* Mobile image/video/container overrides */
    .page-gdpr img {
      max-width: 100% !important;
      width: 100% !important;
      height: auto !important;
      display: block !important;
    }
    .page-gdpr__section, .page-gdpr__card, .page-gdpr__container {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      padding-left: 15px;
      padding-right: 15px;
    }
    .page-gdpr video, .page-gdpr__video {
      max-width: 100% !important;
      width: 100% !important;
      height: auto !important;
      display: block !important;
    }
    .page-gdpr__video-section,
    .page-gdpr__video-container,
    .page-gdpr__video-wrapper {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      padding-left: 15px;
      padding-right: 15px;
      overflow: hidden !important;
    }
    .page-gdpr__video-section {
        padding-top: 10px !important;
    }
    .page-gdpr__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
}

/* Ensure no filter is used on images */
.page-gdpr img {
    filter: none;
}