/* style/gdpr.css */

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

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

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

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

.page-gdpr__hero-image-wrapper {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    position: relative;
    margin-bottom: 40px;
}

.page-gdpr__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: brightness(0.7);
}

.page-gdpr__hero-content-wrapper {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    z-index: 1;
    margin-top: -150px; /* Adjust to slightly overlap the image for visual flow */
    position: relative;
    background-color: rgba(17, 40, 27, 0.8); /* Semi-transparent background for text */
    padding: 30px;
    border-radius: 10px;
}

.page-gdpr__main-title {
    font-size: clamp(2.2em, 4vw, 3.5em);
    color: var(--gdpr-gold-color);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
}

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

.page-gdpr__section-title {
    font-size: clamp(1.8em, 3.5vw, 2.8em);
    color: var(--gdpr-gold-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 0 8px rgba(87, 227, 141, 0.3);
}

.page-gdpr__paragraph {
    font-size: 1.05em;
    color: var(--gdpr-text-secondary);
    margin-bottom: 25px;
    text-align: justify;
}

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    box-sizing: border-box;
}

.page-gdpr__btn-primary {
    background: var(--gdpr-button-gradient);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
    margin: 0 10px 10px 0;
}

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

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

.page-gdpr__btn-secondary:hover {
    background-color: var(--gdpr-primary-color);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(17, 168, 78, 0.3);
}

/* Intro Section */
.page-gdpr__intro-section,
.page-gdpr__principles-section,
.page-gdpr__rights-section,
.page-gdpr__security-section,
.page-gdpr__contact-faq-section,
.page-gdpr__updates-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--gdpr-divider-color);
}

.page-gdpr__intro-section .page-gdpr__container {
    text-align: center;
}

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

.page-gdpr__feature-card,
.page-gdpr__security-card {
    background-color: var(--gdpr-card-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--gdpr-border-color);
    transition: transform 0.3s ease;
}

.page-gdpr__feature-card:hover,
.page-gdpr__security-card:hover {
    transform: translateY(-5px);
}

.page-gdpr__feature-icon,
.page-gdpr__security-icon {
    width: 100%;
    max-width: 250px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    object-fit: cover;
}

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

.page-gdpr__card-description {
    font-size: 1em;
    color: var(--gdpr-text-secondary);
}

/* Principles Section */
.page-gdpr__principles-list,
.page-gdpr__rights-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-gdpr__principles-item,
.page-gdpr__rights-item {
    background-color: var(--gdpr-card-bg);
    border: 1px solid var(--gdpr-border-color);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-gdpr__item-title {
    font-size: 1.4em;
    color: var(--gdpr-primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.page-gdpr__item-description {
    font-size: 1em;
    color: var(--gdpr-text-secondary);
}

/* Rights Section */
.page-gdpr__content-image {
    width: 100%;
    height: auto;
    max-width: 800px;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.page-gdpr__cta-wrapper {
    text-align: center;
    margin-top: 50px;
}

/* Security Section */
.page-gdpr__security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Contact & FAQ Section */
.page-gdpr__contact-info {
    background-color: var(--gdpr-card-bg);
    border: 1px solid var(--gdpr-border-color);
    border-radius: 10px;
    padding: 30px;
    margin-top: 40px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-gdpr__contact-text {
    font-size: 1.1em;
    color: var(--gdpr-text-main);
    margin-bottom: 10px;
}

.page-gdpr__contact-text a {
    color: var(--gdpr-primary-color);
    text-decoration: none;
}

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

.page-gdpr__faq-area {
    margin-top: 60px;
}

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

.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;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-gdpr__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.2em;
    color: var(--gdpr-text-main);
    font-weight: 600;
    background-color: var(--gdpr-deep-green);
    transition: background-color 0.3s ease;
}

.page-gdpr__faq-question:hover {
    background-color: rgba(10, 75, 44, 0.8);
}

.page-gdpr__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    color: var(--gdpr-gold-color);
}

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

.page-gdpr__faq-answer {
    padding: 0 25px 20px;
    font-size: 1em;
    color: var(--gdpr-text-secondary);
    line-height: 1.6;
}

.page-gdpr__faq-answer a {
    color: var(--gdpr-primary-color);
    text-decoration: none;
}

.page-gdpr__faq-answer a:hover {
    text-decoration: underline;
}

/* Updates Section */
.page-gdpr__updates-section .page-gdpr__container {
    text-align: center;
    padding-bottom: 60px;
}

/* General Content Image Styling */
.page-gdpr img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-gdpr__hero-content-wrapper {
        margin-top: -100px;
        padding: 25px;
    }
    .page-gdpr__main-title {
        font-size: clamp(2em, 3.5vw, 3em);
    }
    .page-gdpr__hero-description {
        font-size: 1em;
    }
    .page-gdpr__section-title {
        font-size: clamp(1.6em, 3vw, 2.5em);
    }
}

@media (max-width: 768px) {
    .page-gdpr__hero-section {
        padding-bottom: 40px;
    }
    .page-gdpr__hero-image-wrapper {
        max-height: 300px;
        margin-bottom: 20px;
    }
    .page-gdpr__hero-content-wrapper {
        margin-top: -80px;
        padding: 20px;
    }
    .page-gdpr__main-title {
        font-size: clamp(1.8em, 5vw, 2.5em);
    }
    .page-gdpr__hero-description {
        font-size: 0.95em;
    }
    .page-gdpr__section-title {
        font-size: clamp(1.5em, 4.5vw, 2.2em);
    }
    .page-gdpr__paragraph {
        font-size: 0.95em;
    }

    .page-gdpr__feature-grid, .page-gdpr__security-grid {
        grid-template-columns: 1fr;
    }

    .page-gdpr__btn-primary,
    .page-gdpr__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        margin: 10px 0 !important;
        padding: 12px 20px;
    }

    .page-gdpr__cta-wrapper {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .page-gdpr__container,
    .page-gdpr__intro-section,
    .page-gdpr__principles-section,
    .page-gdpr__rights-section,
    .page-gdpr__security-section,
    .page-gdpr__contact-faq-section,
    .page-gdpr__updates-section {
        padding-left: 15px !important;
        padding-right: 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-gdpr img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-gdpr__video-section {
        padding-top: 10px !important; /* body handles --header-offset */
    }

    .page-gdpr__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }

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

@media (max-width: 480px) {
    .page-gdpr__hero-content-wrapper {
        margin-top: -60px;
    }
    .page-gdpr__main-title {
        font-size: clamp(1.5em, 6vw, 2em);
    }
    .page-gdpr__section-title {
        font-size: clamp(1.3em, 5.5vw, 1.8em);
    }
    .page-gdpr__intro-section, .page-gdpr__principles-section, .page-gdpr__rights-section, .page-gdpr__security-section, .page-gdpr__contact-faq-section, .page-gdpr__updates-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .page-gdpr__feature-card, .page-gdpr__security-card {
        padding: 20px;
    }
    .page-gdpr__card-title {
        font-size: 1.3em;
    }
    .page-gdpr__item-title {
        font-size: 1.2em;
    }
}