/* style/gdpr.css */

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

.page-gdpr {
    background-color: var(--gdpr-bg-dark); /* Ensure body background is honored, content background can be this dark color */
    color: var(--gdpr-text-main); /* Default text color for dark background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-gdpr__dark-bg {
    background-color: var(--gdpr-bg-dark);
    color: var(--gdpr-text-main);
}

.page-gdpr__light-bg {
    background-color: #ffffff; /* A lighter background for contrast sections */
    color: #333333; /* Dark text for light background */
}

.page-gdpr__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 20px 60px; /* Small top padding, more bottom padding */
    overflow: hidden;
    text-align: center;
}

.page-gdpr__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px; /* Space between image and content */
}

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

.page-gdpr__hero-content {
    max-width: 900px;
    z-index: 1;
    color: var(--gdpr-text-main);
}

.page-gdpr__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--gdpr-gold);
    margin-bottom: 20px;
    font-size: clamp(2.2rem, 4vw, 3.5rem); /* Using clamp for responsive H1 font size */
}

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

.page-gdpr__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-gdpr__btn-primary {
    background: var(--gdpr-button-gradient);
    color: #ffffff;
    border: 2px solid transparent;
}

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

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

.page-gdpr__btn-secondary:hover {
    background-color: var(--gdpr-glow);
    color: var(--gdpr-bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(87, 227, 141, 0.2);
}

.page-gdpr__section {
    padding: 60px 20px;
    text-align: center;
}

.page-gdpr__content-area {
    max-width: 1200px;
    margin: 0 auto;
    color: #333333; /* Dark text for light background */
    background-color: #ffffff; /* Explicitly set white background */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.page-gdpr__section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: var(--gdpr-gold);
    line-height: 1.3;
}

.page-gdpr__section-title--white {
    color: var(--gdpr-text-main);
}

.page-gdpr__text-block {
    max-width: 900px;
    margin: 0 auto 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333333; /* Default dark text */
}

.page-gdpr__text-block--white {
    color: var(--gdpr-text-secondary);
}

.page-gdpr__principles-section {
    background-color: var(--gdpr-bg-dark);
    color: var(--gdpr-text-main);
}

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

.page-gdpr__card {
    background-color: var(--gdpr-card-bg);
    padding: 30px;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    border: 1px solid var(--gdpr-border);
    color: var(--gdpr-text-main);
    transition: transform 0.3s ease;
}

.page-gdpr__card:hover {
    transform: translateY(-5px);
}

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

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

.page-gdpr__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto 0;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.page-gdpr__rights-section {
    background-color: #ffffff;
    color: #333333;
}

.page-gdpr__rights-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 40px auto;
    text-align: left;
}

.page-gdpr__rights-item {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.page-gdpr__rights-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #11A84E; /* Brand primary color for titles */
}

.page-gdpr__rights-item p {
    font-size: 1rem;
    color: #555555;
}

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

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

.page-gdpr__feature-card {
    background-color: rgba(17, 39, 27, 0.8); /* Slightly transparent card bg */
    padding: 30px;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    border: 1px solid var(--gdpr-border);
    color: var(--gdpr-text-main);
}

.page-gdpr__feature-title {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--gdpr-glow);
}

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

.page-gdpr__contact-section {
    background-color: #ffffff;
    color: #333333;
}

.page-gdpr__contact-info {
    max-width: 700px;
    margin: 40px auto;
    text-align: left;
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.page-gdpr__contact-info p {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #555555;
}

.page-gdpr__contact-info strong {
    color: #11A84E;
}

.page-gdpr__contact-link {
    color: #22C768; /* Auxiliary color for links */
    text-decoration: none;
    font-weight: bold;
}

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

.page-gdpr__faq-section {
    background-color: var(--gdpr-bg-dark);
    color: var(--gdpr-text-main);
}

.page-gdpr__faq-list {
    max-width: 900px;
    margin: 40px auto;
    text-align: left;
}

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

.page-gdpr__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    background-color: rgba(17, 39, 27, 0.9); /* Slightly darker for question */
    color: var(--gdpr-text-main);
    user-select: none;
    transition: background-color 0.3s ease;
}

.page-gdpr__faq-question:hover {
    background-color: rgba(17, 39, 27, 1);
}

.page-gdpr__faq-qtext {
    flex-grow: 1;
    color: var(--gdpr-gold);
}

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

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

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

.page-gdpr__faq-item details > summary {
    list-style: none;
}

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

.page-gdpr__conclusion-section {
    background-color: #ffffff;
    color: #333333;
}

.page-gdpr__conclusion-section p {
    color: #555555;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-gdpr__main-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    .page-gdpr__section-title {
        font-size: 2rem;
    }
    .page-gdpr__card-grid,
    .page-gdpr__security-features {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
        margin: 30px auto;
    }
    .page-gdpr__hero-image {
        height: 500px; /* Adjust height for tablet */
    }
}

@media (max-width: 768px) {
    .page-gdpr {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-gdpr__hero-section {
        padding: 10px 15px 40px;
    }
    .page-gdpr__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    .page-gdpr__intro-description {
        font-size: 1rem;
    }
    .page-gdpr__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }
    .page-gdpr__btn-primary,
    .page-gdpr__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    .page-gdpr__section {
        padding: 40px 15px;
    }
    .page-gdpr__section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    .page-gdpr__text-block {
        font-size: 1rem;
    }
    .page-gdpr__card,
    .page-gdpr__feature-card,
    .page-gdpr__rights-item,
    .page-gdpr__contact-info,
    .page-gdpr__faq-item {
        padding: 20px;
    }
    .page-gdpr__card-title,
    .page-gdpr__feature-title,
    .page-gdpr__rights-title {
        font-size: 1.2rem;
    }
    .page-gdpr__hero-image {
        height: 300px; /* Further adjust height for mobile */
    }

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

    /* Mobile video responsive adaptation (if video were present) */
    .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; /* Small top padding for video section */
    }

    /* Container adaptation for mobile */
    .page-gdpr__section,
    .page-gdpr__card,
    .page-gdpr__container,
    .page-gdpr__hero-section,
    .page-gdpr__principles-section,
    .page-gdpr__rights-section,
    .page-gdpr__security-section,
    .page-gdpr__contact-section,
    .page-gdpr__faq-section,
    .page-gdpr__conclusion-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-gdpr__cta-buttons {
        flex-wrap: wrap !important;
        gap: 10px;
    }
}