.page-gdpr {
    font-family: 'Arial', sans-serif;
    color: #333333;
    line-height: 1.6;
    background-color: #FFFFFF;
}

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

.page-gdpr__hero-section {
    padding-top: 10px; /* Adjusted to avoid double padding if body has --header-offset */
    background-color: #f0f8ff; /* Light blue background for hero */
    overflow: hidden;
    display: flex;
    flex-direction: column; /* Stack image and content vertically */
    align-items: center;
    justify-content: flex-start; /* Align content to top */
    text-align: center;
}

.page-gdpr__hero-visual {
    width: 100%;
    max-height: 500px; /* Limit height for the image itself */
    overflow: hidden;
}

.page-gdpr__hero-image {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    display: block;
}

.page-gdpr__hero-content {
    color: #333333; /* Dark text on light background */
    text-shadow: none;
    padding: 40px 20px;
    background-color: transparent; /* No background needed if not overlaid */
    width: 100%; /* Ensure content takes full width */
    max-width: 1200px; /* Constrain content width */
    box-sizing: border-box;
}

.page-gdpr__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-gdpr__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-gdpr__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
    box-sizing: border-box;
    max-width: 100%; /* Ensure buttons don't overflow */
}

.page-gdpr__btn-primary {
    background-color: #26A9E0;
    color: #FFFFFF;
    border: 2px solid #26A9E0;
}

.page-gdpr__btn-primary:hover {
    background-color: #1a8cc4;
    border-color: #1a8cc4;
    transform: translateY(-2px);
}

.page-gdpr__btn-secondary {
    background-color: #FFFFFF;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-gdpr__btn-secondary:hover {
    background-color: #f0f8ff;
    color: #1a8cc4;
    border-color: #1a8cc4;
    transform: translateY(-2px);
}

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

.page-gdpr__section:nth-of-type(even) {
    background-color: #f9f9f9;
}

.page-gdpr__dark-section {
    background-color: #26A9E0;
    color: #FFFFFF;
}

.page-gdpr__dark-section .page-gdpr__section-title,
.page-gdpr__dark-section .page-gdpr__list-item,
.page-gdpr__dark-section .page-gdpr__link {
    color: #FFFFFF;
}

.page-gdpr__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: #26A9E0;
}

.page-gdpr__dark-section .page-gdpr__section-title {
    color: #FFFFFF;
}

.page-gdpr__text-block {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.7;
    text-align: justify;
}

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

.page-gdpr__list-item {
    margin-bottom: 10px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.page-gdpr__image-full-width {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-gdpr__image-centered {
    display: block;
    margin: 0 auto 30px auto;
    max-width: 80%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-gdpr__link {
    color: #26A9E0;
    text-decoration: underline;
}

.page-gdpr__link:hover {
    color: #1a8cc4;
    text-decoration: none;
}

/* FAQ Section Styling (Details version) */
details.page-gdpr__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    background: #fff;
}

details.page-gdpr__faq-item summary.page-gdpr__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    user-select: none;
    list-style: none;
    transition: background-color 0.3s ease;
}

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

details.page-gdpr__faq-item summary.page-gdpr__faq-question:hover {
    background: #f5f5f5;
}

.page-gdpr__faq-qtext {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
    color: #333333;
}

.page-gdpr__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: #666;
    flex-shrink: 0;
    margin-left: 15px;
    width: 28px;
    text-align: center;
}

details.page-gdpr__faq-item .page-gdpr__faq-answer {
    padding: 0 20px 20px;
    background: #f9f9f9;
    border-radius: 0 0 5px 5px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-gdpr__content-container {
        padding: 15px;
    }
    .page-gdpr__hero-content {
        padding: 30px 15px;
    }
    .page-gdpr__main-title {
        font-size: 2.8rem;
    }
    .page-gdpr__subtitle {
        font-size: 1.1rem;
    }
    .page-gdpr__section-title {
        font-size: 2rem;
    }
    .page-gdpr__section {
        padding: 40px 0;
    }
    .page-gdpr__image-centered {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    /* HERO 主图区域 */
    .page-gdpr__hero-section {
        min-height: auto;
        padding-top: 10px; /* Consistent small top padding */
    }
    .page-gdpr__hero-visual {
        height: auto;
        width: 100%;
    }
    .page-gdpr__hero-image {
        object-fit: contain !important; /* Prevent cropping on mobile */
        height: auto !important;
        width: 100% !important;
        position: relative;
    }
    .page-gdpr__hero-content {
        padding: 20px 15px;
        color: #333333;
        text-shadow: none;
        background-color: transparent;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-gdpr__main-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    .page-gdpr__subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    /* 按钮与按钮容器 */
    .page-gdpr__cta-buttons {
        flex-direction: column !important; /* Stack buttons vertically */
        gap: 10px !important;
        padding: 0 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .page-gdpr__btn-primary,
    .page-gdpr__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px !important;
        font-size: 1rem !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        box-sizing: border-box !important;
    }

    /* 通用图片与容器 */
    .page-gdpr img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }
    .page-gdpr__content-container,
    .page-gdpr__section,
    .page-gdpr__what-is-gdpr,
    .page-gdpr__data-collection,
    .page-gdpr__data-usage,
    .page-gdpr__data-protection,
    .page-gdpr__your-rights,
    .page-gdpr__data-retention,
    .page-gdpr__contact-gdpr,
    .page-gdpr__faq-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    .page-gdpr__section {
        padding: 30px 0 !important;
    }
    .page-gdpr__section-title {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    .page-gdpr__text-block,
    .page-gdpr__list-item {
        font-size: 0.95rem;
        text-align: left; /* Adjust justify for smaller screens if needed */
    }
    .page-gdpr__list {
        margin-left: 20px;
    }
    .page-gdpr__image-centered {
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    /* FAQ Mobile */
    details.page-gdpr__faq-item summary.page-gdpr__faq-question {
        padding: 15px;
    }
    .page-gdpr__faq-qtext {
        font-size: 15px;
    }
    .page-gdpr__faq-toggle {
        font-size: 20px;
        width: 24px;
        height: 24px;
    }
    details.page-gdpr__faq-item .page-gdpr__faq-answer {
        padding: 0 15px 15px;
    }
}