/* style/gdpr.css */

/* Custom Colors */
:root {
    --page-gdpr-bg: #08160F; /* Background */
    --page-gdpr-card-bg: #11271B; /* Card BG */
    --page-gdpr-text-main: #F2FFF6; /* Text Main */
    --page-gdpr-text-secondary: #A7D9B8; /* Text Secondary */
    --page-gdpr-border: #2E7A4E; /* Border */
    --page-gdpr-glow: #57E38D; /* Glow */
    --page-gdpr-gold: #F2C14E; /* Gold */
    --page-gdpr-divider: #1E3A2A; /* Divider */
    --page-gdpr-deep-green: #0A4B2C; /* Deep Green */
    --page-gdpr-btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
    --page-gdpr-light-bg-text: #333333; /* For light background sections */
    --page-gdpr-light-bg-section: #ffffff; /* For sections that need light background */
}

.page-gdpr {
    background-color: var(--page-gdpr-bg);
    color: var(--page-gdpr-text-main);
    font-family: Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll for the main content area */
}

.page-gdpr__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
    background-color: var(--page-gdpr-bg);
}

.page-gdpr__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.page-gdpr__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 600px; /* Limit height for hero image */
}

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

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

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

.page-gdpr__section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.page-gdpr__dark-section {
    background-color: var(--page-gdpr-card-bg); /* Use card background for dark sections */
    color: var(--page-gdpr-text-main);
}

.page-gdpr__light-bg {
    background-color: var(--page-gdpr-light-bg-section);
    color: var(--page-gdpr-light-bg-text);
}

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

.page-gdpr__section-title {
    font-size: clamp(1.8em, 3.5vw, 2.8em);
    color: var(--page-gdpr-gold);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
}

.page-gdpr__section-intro {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 50px;
    color: var(--page-gdpr-text-secondary);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-gdpr__content-block {
    margin-bottom: 30px;
}

.page-gdpr__sub-title {
    font-size: clamp(1.4em, 2.5vw, 2em);
    color: var(--page-gdpr-text-main);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

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

.page-gdpr__list li {
    margin-bottom: 10px;
}

.page-gdpr__list li strong {
    color: var(--page-gdpr-text-main);
}

.page-gdpr__btn-primary {
    display: inline-block;
    background: var(--page-gdpr-btn-gradient);
    color: #ffffff; /* White text for contrast */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-gdpr__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(42, 209, 111, 0.4);
}

.page-gdpr__section-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 50px auto;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.page-gdpr__right-item {
    background-color: var(--page-gdpr-card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: var(--page-gdpr-text-main);
}

.page-gdpr__right-item p {
    color: var(--page-gdpr-text-secondary);
}

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

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

.page-gdpr__feature-item {
    background-color: var(--page-gdpr-card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: var(--page-gdpr-text-main);
}

.page-gdpr__feature-item p,
.page-gdpr__feature-item li {
    color: var(--page-gdpr-text-secondary);
}

.page-gdpr__process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.page-gdpr__process-item {
    flex: 1;
    min-width: 300px;
    max-width: 550px;
    background-color: var(--page-gdpr-card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: var(--page-gdpr-text-main);
}

.page-gdpr__process-item p {
    color: var(--page-gdpr-text-secondary);
}

.page-gdpr__contact-section {
    text-align: center;
}

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

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

.page-gdpr__contact-list li strong {
    color: var(--page-gdpr-gold);
}

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

.page-gdpr__contact-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* FAQ Styling */
.page-gdpr__faq-section {
    padding-bottom: 80px;
}

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

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

.page-gdpr__faq-item summary {
    cursor: pointer;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 1.2em;
    color: var(--page-gdpr-gold);
    list-style: none; /* Hide default marker */
    border-bottom: 1px solid var(--page-gdpr-divider);
    transition: background-color 0.3s ease;
}

.page-gdpr__faq-item summary::-webkit-details-marker {
    display: none; /* Hide default marker for Webkit browsers */
}

.page-gdpr__faq-item summary:hover {
    background-color: rgba(17, 168, 78, 0.1); /* Slight hover effect */
}

.page-gdpr__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    color: var(--page-gdpr-glow);
    transition: transform 0.3s ease;
}

.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
    transform: rotate(45deg); /* Rotate for 'x' effect */
}

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

/* Responsive Images/Videos/Buttons/Containers */
.page-gdpr img {
    max-width: 100%;
    height: auto;
    display: block;
}

.page-gdpr video,
.page-gdpr__video {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
}

.page-gdpr__video-section,
.page-gdpr__video-container,
.page-gdpr__video-wrapper,
.page-gdpr__section,
.page-gdpr__card,
.page-gdpr__container,
.page-gdpr__cta-buttons,
.page-gdpr__button-group,
.page-gdpr__btn-container {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

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

    .page-gdpr__hero-section {
        padding-bottom: 40px;
    }

    .page-gdpr__hero-content {
        margin-top: 30px;
    }

    .page-gdpr__main-title {
        font-size: 2em; /* Smaller H1 for mobile */
    }

    .page-gdpr__section {
        padding: 40px 0;
    }

    .page-gdpr__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-gdpr__section-intro {
        margin-bottom: 30px;
    }

    .page-gdpr__sub-title {
        font-size: 1.3em;
    }

    /* Images, Videos, Buttons and their containers MUST be responsive */
    .page-gdpr img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .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,
    .page-gdpr__section,
    .page-gdpr__card,
    .page-gdpr__container,
    .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;
        overflow: hidden !important;
    }
    
    .page-gdpr__btn-primary,
    .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;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-gdpr__cta-buttons,
    .page-gdpr__button-group,
    .page-gdpr__btn-container {
        flex-wrap: wrap !important;
        gap: 10px;
        flex-direction: column; /* Stack buttons vertically on mobile */
    }

    .page-gdpr__rights-grid,
    .page-gdpr__security-features {
        grid-template-columns: 1fr; /* Single column layout for mobile */
    }

    .page-gdpr__process-steps {
        flex-direction: column;
    }

    .page-gdpr__process-item {
        max-width: 100%;
    }

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

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