/* style/gdpr.css */

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

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

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

/* Hero Section */
.page-gdpr__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 0 60px 0;
    background-color: var(--deep-green-color);
    position: relative;
    overflow: hidden;
}

.page-gdpr__hero-image-wrapper {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
}

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

.page-gdpr__hero-content {
    position: relative;
    z-index: 1;
    padding: 20px;
    max-width: 900px;
    margin-top: 20px;
}

.page-gdpr__main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 15px;
    line-height: 1.2;
}

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

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

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
    max-width: 100%;
}

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

.page-gdpr__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3), 0 0 10px var(--glow-color);
}

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

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

/* General Section Styling */
.page-gdpr__introduction-section,
.page-gdpr__what-is-gdpr-section,
.page-gdpr__commitment-section,
.page-gdpr__your-rights-section,
.page-gdpr__cookie-policy-section,
.page-gdpr__contact-support-section,
.page-gdpr__updates-section {
    padding: 60px 0;
}

.page-gdpr__dark-section {
    background-color: var(--card-bg);
}

.page-gdpr__section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-gdpr__section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--glow-color);
    margin: 15px auto 0;
}

.page-gdpr__sub-title {
    font-size: 1.5rem;
    color: var(--glow-color);
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: 600;
}

.page-gdpr__text-block {
    font-size: 1.05rem;
    color: var(--text-main);
    margin-bottom: 15px;
}

.page-gdpr__text-block a {
    color: var(--glow-color);
    text-decoration: none;
    font-weight: 600;
}

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

.page-gdpr__content-flex {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.page-gdpr__content-flex--reverse {
    flex-direction: row-reverse;
}

.page-gdpr__text-column,
.page-gdpr__image-column {
    flex: 1;
}

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

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

.page-gdpr__list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--text-main);
}

.page-gdpr__list li::before {
    content: '•';
    color: var(--glow-color);
    position: absolute;
    left: 0;
    font-size: 1.2em;
    line-height: 1;
}

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

.page-gdpr__faq-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-gdpr__faq-item summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    background-color: var(--deep-green-color);
    border-bottom: 1px solid var(--border-color);
}

.page-gdpr__faq-item summary:hover {
    background-color: var(--primary-color);
}

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

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

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

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

.page-gdpr__faq-answer {
    padding: 20px;
    color: var(--text-secondary);
    font-size: 1rem;
    border-top: 1px solid var(--border-color);
    background-color: var(--card-bg);
}

.page-gdpr__faq-answer p {
    margin-bottom: 0;
    color: var(--text-secondary);
}

.page-gdpr__cta-buttons--center {
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-gdpr__content-flex {
        flex-direction: column;
    }
    .page-gdpr__content-flex--reverse {
        flex-direction: column;
    }
    .page-gdpr__main-title {
        font-size: 2rem;
    }
    .page-gdpr__section-title {
        font-size: 1.8rem;
    }
    .page-gdpr__sub-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .page-gdpr__hero-section {
        padding-bottom: 40px;
    }
    .page-gdpr__main-title {
        font-size: 1.8rem;
    }
    .page-gdpr__hero-description {
        font-size: 1rem;
    }
    .page-gdpr__section-title {
        font-size: 1.6rem;
    }
    .page-gdpr__sub-title {
        font-size: 1.2rem;
    }
    .page-gdpr__text-block,
    .page-gdpr__list li,
    .page-gdpr__faq-item summary,
    .page-gdpr__faq-answer p {
        font-size: 0.95rem;
    }
    
    /* Mobile image responsiveness */
    .page-gdpr img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    /* Mobile container responsiveness */
    .page-gdpr__container,
    .page-gdpr__hero-image-wrapper,
    .page-gdpr__cta-buttons,
    .page-gdpr__content-flex,
    .page-gdpr__text-column,
    .page-gdpr__image-column,
    .page-gdpr__faq-list,
    .page-gdpr__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

    .page-gdpr__hero-section {
        padding-top: 10px !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* Mobile button responsiveness */
    .page-gdpr__btn-primary,
    .page-gdpr__btn-secondary,
    .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 {
        flex-direction: column !important;
        gap: 15px !important;
    }
    .page-gdpr__cta-buttons--center {
        padding-left: 0;
        padding-right: 0;
    }
    
    /* Ensure no horizontal scroll */
    .page-gdpr {
        overflow-x: hidden;
    }
}