:root {
    --winph-primary-color: #F2C14E;
    --winph-secondary-color: #FFD36B;
    --winph-button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    --winph-card-bg: #111111;
    --winph-background-color: #0A0A0A;
    --winph-text-main: #FFF6D6;
    --winph-border-color: #3A2A12;
    --winph-glow-color: #FFD36B;
    --header-offset: 120px; /* Default for desktop, will be updated by shared.css media queries */
}

.page-gdpr {
    font-family: Arial, sans-serif;
    color: var(--winph-text-main);
    background-color: var(--winph-background-color);
    line-height: 1.6;
    padding-bottom: 60px; /* Ensure space above footer */
}

.page-gdpr__hero-section {
    background: var(--winph-background-color);
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

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

.page-gdpr__hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-gdpr__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    color: var(--winph-secondary-color);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

.page-gdpr__hero-description {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--winph-text-main);
    margin-bottom: 30px;
    max-width: 700px;
}

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

.page-gdpr__btn-primary {
    background: var(--winph-button-gradient);
    color: #ffffff; /* Button text always white on primary gradient */
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

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

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

.page-gdpr__btn-secondary:hover {
    background: var(--winph-primary-color);
    color: #ffffff;
}

.page-gdpr__section-spacing {
    padding: 60px 0;
}

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

.page-gdpr__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--winph-primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(242, 193, 78, 0.3);
}

.page-gdpr__text-block {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--winph-text-main);
    text-align: justify;
}

.page-gdpr__text-block a {
    color: var(--winph-secondary-color);
    text-decoration: underline;
}

.page-gdpr__text-block a:hover {
    color: var(--winph-glow-color);
}

.page-gdpr__list-item {
    margin-bottom: 15px;
    color: var(--winph-text-main);
    list-style: disc;
    margin-left: 20px;
}

.page-gdpr__list-title {
    font-size: 1.3rem;
    color: var(--winph-secondary-color);
    margin-bottom: 5px;
}

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

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

.page-gdpr__data-card,
.page-gdpr__security-card {
    background: var(--winph-card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--winph-border-color);
    color: var(--winph-text-main);
}

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

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

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

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

.page-gdpr__faq-question:hover {
    background-color: rgba(255, 211, 107, 0.05);
}

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

.page-gdpr__faq-item.active .page-gdpr__faq-toggle {
    transform: rotate(45deg);
}

.page-gdpr__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--winph-text-main);
}

.page-gdpr__faq-item.active .page-gdpr__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show all content */
    padding: 20px;
}

.page-gdpr__faq-answer p {
    margin-bottom: 15px;
    font-size: 1rem;
}

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

.page-gdpr__contact-list .page-gdpr__list-item {
    margin-bottom: 10px;
    font-size: 1.1rem;
    list-style: none;
    margin-left: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-gdpr__hero-content {
        padding: 15px;
    }
    .page-gdpr__main-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    .page-gdpr__hero-description {
        font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    }
    .page-gdpr__section-title {
        font-size: clamp(1.6rem, 4vw, 2.5rem);
    }
    .page-gdpr__text-block {
        font-size: 1rem;
    }
}

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

    .page-gdpr__hero-section {
        padding-top: var(--header-offset, 120px) !important; /* Mobile: controlled by shared's media queries */
    }

    .page-gdpr__hero-content {
        padding: 10px;
    }
    .page-gdpr__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    .page-gdpr__hero-description {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
    }
    .page-gdpr__section-spacing {
        padding: 40px 0;
    }
    .page-gdpr__section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 30px;
    }
    .page-gdpr__data-collection-grid,
    .page-gdpr__security-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .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;
    }
    .page-gdpr__hero-content .page-gdpr__btn-primary, .page-gdpr__hero-content .page-gdpr__btn-secondary {
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-gdpr__container,
    .page-gdpr__section,
    .page-gdpr__card,
    .page-gdpr__box {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

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

@media (max-width: 480px) {
    .page-gdpr__main-title {
        font-size: clamp(1.5rem, 7vw, 2.2rem);
    }
    .page-gdpr__hero-description {
        font-size: clamp(0.85rem, 3vw, 0.95rem);
    }
    .page-gdpr__list-item {
        margin-left: 15px;
    }
    .page-gdpr__faq-question {
        font-size: 1.1rem;
        padding: 15px;
    }
    .page-gdpr__faq-answer {
        padding: 15px;
    }
}