.page-gdpr {
    font-family: Arial, sans-serif;
    color: #FFF1E8; /* Text Main */
    background-color: #140C0C; /* Background */
}

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

.page-gdpr__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding as body handles header offset */
    padding-bottom: 80px;
    text-align: center;
    overflow: hidden;
    background-color: #140C0C;
}

.page-gdpr__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-gdpr__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

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

.page-gdpr__hero-title {
    font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #FFF1E8;
    letter-spacing: 0.05em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gdpr__hero-description {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #FFF1E8;
    opacity: 0.9;
}

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

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

.page-gdpr__btn-primary {
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button */
    color: #140C0C; /* Dark text for contrast on gold gradient */
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-gdpr__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-gdpr__btn-secondary {
    background: #2A1212; /* Card BG */
    color: #FFF1E8; /* Text Main */
    border: 2px solid #6A1E1E; /* Border */
}

.page-gdpr__btn-secondary:hover {
    background: #6A1E1E; /* Border */
    color: #FFF1E8;
    transform: translateY(-2px);
}

.page-gdpr__section-title {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: #F3C54D; /* Gold */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-gdpr__sub-title {
    font-size: 1.8em;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #E53030; /* Secondary */
}

.page-gdpr__text-block {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #FFF1E8;
    opacity: 0.85;
}

.page-gdpr__dark-section {
    background-color: #2A1212; /* Card BG */
    padding: 60px 0;
    border-top: 1px solid #6A1E1E;
    border-bottom: 1px solid #6A1E1E;
}

.page-gdpr__principles-section {
    padding: 60px 0;
    background-color: #140C0C;
}

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

.page-gdpr__principle-card,
.page-gdpr__protection-card {
    background-color: #2A1212; /* Card BG */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #6A1E1E;
    text-align: center;
}

.page-gdpr__card-title {
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 15px;
    color: #F3C54D; /* Gold */
}

.page-gdpr__card-text {
    font-size: 1em;
    line-height: 1.7;
    color: #FFF1E8;
    opacity: 0.8;
}

.page-gdpr__rights-section {
    padding: 60px 0;
}

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

.page-gdpr__right-item {
    background-color: #2A1212; /* Card BG */
    padding: 25px;
    border-radius: 8px;
    border-left: 5px solid #E53030; /* Secondary */
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-gdpr__right-title {
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 10px;
    color: #F3C54D; /* Gold */
}

.page-gdpr__right-description {
    font-size: 0.95em;
    line-height: 1.6;
    color: #FFF1E8;
    opacity: 0.8;
}

.page-gdpr__protection-section {
    padding: 60px 0;
    background-color: #140C0C;
}

.page-gdpr__card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #6A1E1E;
}

.page-gdpr__contact-section {
    padding: 60px 0;
    text-align: center;
}

.page-gdpr__inline-link {
    color: #F3C54D; /* Gold */
    text-decoration: underline;
}

.page-gdpr__inline-link:hover {
    color: #FFB04A;
}

.page-gdpr__contact-button {
    margin-top: 30px;
}

.page-gdpr__faq-section {
    padding: 60px 0;
    background-color: #140C0C;
}

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

.page-gdpr__faq-item {
    background-color: #2A1212; /* Card BG */
    border: 1px solid #6A1E1E;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.page-gdpr__faq-item[open] {
    background-color: #3e1b1b;
}

.page-gdpr__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: 600;
    color: #F3C54D; /* Gold */
    list-style: none; /* Hide default marker */
}

.page-gdpr__faq-question::-webkit-details-marker, /* Hide default marker for webkit */
.page-gdpr__faq-question::marker {
    display: none;
}

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

.page-gdpr__faq-toggle {
    font-size: 1.5em;
    font-weight: 300;
    margin-left: 20px;
    color: #E53030;
}

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

.page-gdpr__faq-answer {
    padding: 0 25px 20px;
    font-size: 1em;
    line-height: 1.7;
    color: #FFF1E8;
    opacity: 0.85;
}

.page-gdpr__conclusion-section {
    padding: 60px 0;
    text-align: center;
}

.page-gdpr__conclusion-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

/* General image responsiveness */
.page-gdpr img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
    .page-gdpr__hero-content {
        padding: 60px 20px;
    }

    .page-gdpr__hero-title {
        font-size: clamp(1.8em, 5vw, 3em);
    }

    .page-gdpr__section-title {
        font-size: 2em;
    }

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

    .page-gdpr__principles-grid,
    .page-gdpr__rights-list,
    .page-gdpr__protection-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    /* HERO 主图区域 */
    .page-gdpr__hero-section {
        padding-top: 10px !important;
        padding-bottom: 60px !important;
    }

    .page-gdpr__hero-content {
        padding: 40px 15px !important;
    }

    .page-gdpr__hero-title {
        font-size: clamp(1.5em, 6vw, 2.5em) !important;
    }

    .page-gdpr__hero-description {
        font-size: 1em !important;
    }

    .page-gdpr__hero-buttons {
        flex-direction: column !important;
        gap: 15px !important;
    }

    /* 通用图片与容器 */
    .page-gdpr img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    
    .page-gdpr__container,
    .page-gdpr__introduction-section,
    .page-gdpr__principles-section,
    .page-gdpr__rights-section,
    .page-gdpr__protection-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 !important;
        padding-right: 15px !important;
    }

    /* 按钮与按钮容器 */
    .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 !important;
        padding-right: 15px !important;
    }

    .page-gdpr__hero-buttons,
    .page-gdpr__conclusion-buttons {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 0 !important; /* Handled by button padding */
        padding-right: 0 !important; /* Handled by button padding */
        flex-wrap: wrap !important;
        flex-direction: column !important;
        gap: 10px !important;
    }

    /* 其他内容模块 */
    .page-gdpr__section-title {
        font-size: 1.8em !important;
        margin-bottom: 20px !important;
    }

    .page-gdpr__sub-title {
        font-size: 1.4em !important;
        margin-top: 30px !important;
        margin-bottom: 15px !important;
    }

    .page-gdpr__text-block {
        font-size: 0.95em !important;
    }

    .page-gdpr__principles-grid,
    .page-gdpr__rights-list,
    .page-gdpr__protection-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .page-gdpr__principle-card,
    .page-gdpr__protection-card,
    .page-gdpr__right-item,
    .page-gdpr__faq-item {
        padding: 20px !important;
    }

    .page-gdpr__card-title,
    .page-gdpr__right-title {
        font-size: 1.2em !important;
    }

    .page-gdpr__card-text,
    .page-gdpr__right-description,
    .page-gdpr__faq-answer p {
        font-size: 0.9em !important;
    }

    .page-gdpr__faq-question {
        font-size: 1em !important;
        padding: 15px 20px !important;
    }

    .page-gdpr__faq-toggle {
        font-size: 1.2em !important;
    }
}