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

.page-gdpr {
    font-family: Arial, sans-serif;
    color: var(--text-main); /* Default text color for dark body bg */
    background-color: var(--bg-dark); /* Assume body background from shared */
    line-height: 1.6;
}

.page-gdpr__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
    background-color: var(--bg-dark);
    text-align: center;
    overflow: hidden;
}

.page-gdpr__hero-image {
    width: 100%;
    height: auto;
    max-height: 700px;
    object-fit: cover;
    display: block;
    margin-bottom: 30px; /* Space between image and text */
}

.page-gdpr__hero-content {
    max-width: 900px;
    padding: 0 20px;
    z-index: 1; /* Ensure text is above any background elements */
}

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

.page-gdpr__description {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.page-gdpr__btn-primary {
    display: inline-block;
    background: var(--button-gradient);
    color: var(--text-main);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.page-gdpr__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-gdpr__btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 13px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.page-gdpr__btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-main);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

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

.page-gdpr__light-bg {
    background-color: #f8f9fa;
    color: #333333;
}

.page-gdpr__light-bg .page-gdpr__section-title,
.page-gdpr__light-bg .page-gdpr__text-block,
.page-gdpr__light-bg .page-gdpr__rights-title,
.page-gdpr__light-bg .page-gdpr__rights-text,
.page-gdpr__light-bg .page-gdpr__faq-qtext,
.page-gdpr__light-bg .page-gdpr__faq-answer {
    color: #333333;
}

.page-gdpr__light-bg .page-gdpr__faq-toggle {
    color: var(--primary-color);
}

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

.page-gdpr__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--gold-color);
    margin-bottom: 40px;
    font-weight: bold;
}

.page-gdpr__text-block {
    font-size: 1.1rem;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: inherit; /* Inherits from section */
}

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

.page-gdpr__card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: left;
    color: var(--text-main);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.page-gdpr__card-image {
    width: 100%;
    max-width: 400px; /* Adjust based on card width */
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 150px;
}

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

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

.page-gdpr__rights-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    text-align: left;
}

.page-gdpr__rights-item {
    background-color: #ffffff;
    border-left: 5px solid var(--primary-color);
    padding: 20px 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    color: #333333;
}

.page-gdpr__rights-title {
    font-size: 1.35rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: bold;
}

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

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

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

.page-gdpr__feature-item {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    color: var(--text-main);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-gdpr__feature-icon {
    width: 100%;
    max-width: 300px; /* Ensure images are not too small */
    height: auto;
    object-fit: contain;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 150px;
}

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

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

.page-gdpr__faq-section {
    padding-bottom: 80px;
}

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

.page-gdpr__faq-item {
    background-color: #ffffff;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    color: #333333;
}

.page-gdpr__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.15rem;
    font-weight: bold;
    color: var(--primary-color);
    cursor: pointer;
    list-style: none; /* For details/summary */
}

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

.page-gdpr__faq-qtext {
    flex-grow: 1;
    color: #333333; /* Ensure readability */
}

.page-gdpr__faq-toggle {
    font-size: 1.8rem;
    font-weight: normal;
    margin-left: 15px;
    color: var(--primary-color);
}

.page-gdpr__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 1rem;
    line-height: 1.6;
    color: #555555;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-gdpr__hero-image {
        max-height: 500px;
    }
}

@media (max-width: 768px) {
    .page-gdpr__hero-section {
        padding-bottom: 40px;
    }
    .page-gdpr__hero-image {
        max-height: 400px;
        margin-bottom: 20px;
    }
    .page-gdpr__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    .page-gdpr__description {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    }
    .page-gdpr__section {
        padding: 40px 15px;
    }
    .page-gdpr__section-title {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
    }
    .page-gdpr__text-block {
        font-size: 0.95rem;
    }
    .page-gdpr__card {
        padding: 20px;
    }
    .page-gdpr__card-title {
        font-size: 1.3rem;
    }
    .page-gdpr__rights-item {
        padding: 15px 20px;
    }
    .page-gdpr__rights-title {
        font-size: 1.2rem;
    }
    .page-gdpr__rights-text {
        font-size: 0.9rem;
    }
    .page-gdpr__feature-item {
        padding: 20px;
    }
    .page-gdpr__feature-title {
        font-size: 1.25rem;
    }
    .page-gdpr__feature-text {
        font-size: 0.9rem;
    }
    .page-gdpr__faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }
    .page-gdpr__faq-answer {
        padding: 0 20px 15px 20px;
        font-size: 0.9rem;
    }
    .page-gdpr__cta-group {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }
    .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;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Image, Video, Container Mobile Responsiveness */
    .page-gdpr img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-gdpr__container,
    .page-gdpr__hero-content,
    .page-gdpr__grid,
    .page-gdpr__rights-list,
    .page-gdpr__features-grid,
    .page-gdpr__faq-list {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-gdpr__hero-image,
    .page-gdpr__card-image,
    .page-gdpr__feature-icon {
        min-width: unset; /* Remove min-width for mobile */
        min-height: unset;
    }
    .page-gdpr__cta-group {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
    }
}