.page-gdpr {
    font-family: Arial, sans-serif;
    color: #1F2D3D; /* Text Main */
    background-color: #F4F7FB; /* Background */
    line-height: 1.6;
}

/* Hero Section */
.page-gdpr__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, relying on body for header offset */
    padding-bottom: 40px;
    background-color: #F4F7FB; /* Match page background */
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    text-align: center;
    gap: 20px;
}

.page-gdpr__hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* Constrain image width */
    overflow: hidden;
    margin-bottom: 20px;
}

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

.page-gdpr__hero-content {
    max-width: 900px;
    padding: 0 20px;
}

.page-gdpr__main-title {
    font-size: clamp(2em, 3.5vw, 3em); /* Responsive H1 font size */
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.page-gdpr__description {
    font-size: 1.1em;
    color: #1F2D3D;
    margin-bottom: 30px;
}

.page-gdpr__cta-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 25px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
}

.page-gdpr__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(47, 107, 255, 0.4);
}

/* General Section Styling */
.page-gdpr__section {
    padding: 60px 0;
    background-color: #F4F7FB;
}

.page-gdpr__section:nth-of-type(even) {
    background-color: #FFFFFF; /* Card BG for alternating sections */
}

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

.page-gdpr__section-title {
    font-size: 2.2em;
    color: #000000; /* Custom Color_1776249996415 */
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.page-gdpr__sub-title {
    font-size: 1.6em;
    color: #000000; /* Custom Color_1776249996415 */
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: 600;
}

.page-gdpr__sub-title--centered {
    text-align: center;
}

.page-gdpr__text-block {
    margin-bottom: 20px;
    color: #1F2D3D;
}

.page-gdpr__text-block--centered {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-gdpr__list {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #1F2D3D;
}

.page-gdpr__list-item {
    margin-bottom: 10px;
}

.page-gdpr__link {
    color: #2F6BFF; /* Main color for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-gdpr__link:hover {
    text-decoration: underline;
    color: #6FA3FF; /* Auxiliary color on hover */
}

/* Content with Image Wrapper */
.page-gdpr__content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

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

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

.page-gdpr__image-wrapper {
    text-align: center;
}

.page-gdpr__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Security Measures Section - Grid Layout */
.page-gdpr__list--grid {
    list-style: none;
    margin-left: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-gdpr__security-card {
    background-color: #FFFFFF; /* Card BG */
    border: 1px solid #D6E2FF; /* Border color */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__security-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

.page-gdpr__security-card p {
    color: #1F2D3D;
}

/* Contact DPO Section */
.page-gdpr__contact-list {
    list-style: none;
    margin-left: 0;
    padding: 0;
    margin-bottom: 20px;
}

.page-gdpr__contact-item {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #1F2D3D;
}

/* FAQ Section */
.page-gdpr__faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.page-gdpr__faq-item {
    background-color: #FFFFFF; /* Card BG */
    border: 1px solid #D6E2FF; /* Border color */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-gdpr__faq-item[open] {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.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: #000000; /* Custom Color_1776249996415 */
    background-color: #F4F7FB; /* Background */
    border-bottom: 1px solid transparent;
    transition: background-color 0.3s ease, border-bottom-color 0.3s ease;
}

.page-gdpr__faq-item[open] .page-gdpr__faq-question {
    background-color: #FFFFFF;
    border-bottom-color: #D6E2FF;
}

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

.page-gdpr__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    color: #2F6BFF; /* Main color */
    margin-left: 15px;
}

.page-gdpr__faq-answer {
    padding: 0 25px 20px;
    color: #1F2D3D;
}

.page-gdpr__faq-answer p {
    margin-bottom: 0;
}

/* Details element specific styling */
.page-gdpr__faq-item summary {
    list-style: none; /* Hide default marker */
}

.page-gdpr__faq-item summary::-webkit-details-marker {
    display: none; /* Hide default marker for webkit browsers */
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-gdpr__container {
        padding: 0 30px;
    }

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

    .page-gdpr__sub-title {
        font-size: 1.4em;
    }
    
    .page-gdpr__list--grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

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

    .page-gdpr__hero-image-wrapper {
        margin-bottom: 15px;
    }

    .page-gdpr__hero-content {
        padding: 0 15px;
    }

    .page-gdpr__main-title {
        font-size: clamp(1.8em, 8vw, 2.5em) !important; /* Adjust for mobile */
        margin-bottom: 10px;
    }

    .page-gdpr__description {
        font-size: 1em;
        margin-bottom: 20px;
    }

    /* 通用图片与容器 */
    .page-gdpr img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block;
    }
    
    .page-gdpr__section,
    .page-gdpr__container,
    .page-gdpr__content-wrapper,
    .page-gdpr__hero-image-wrapper,
    .page-gdpr__image-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* 按钮与按钮容器 */
    .page-gdpr__cta-button,
    .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;
        text-align: center; /* Center text in full-width buttons */
    }
    
    .page-gdpr__cta-buttons,
    .page-gdpr__button-group,
    .page-gdpr__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
        display: flex;
        flex-direction: column; /* Stack buttons vertically */
    }

    /* 其他内容模块 */
    .page-gdpr__section {
        padding: 40px 0;
    }

    .page-gdpr__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-gdpr__sub-title {
        font-size: 1.3em;
        margin-top: 25px;
        margin-bottom: 15px;
    }

    .page-gdpr__content-wrapper {
        flex-direction: column; /* Stack content and image */
        gap: 30px;
        margin-bottom: 30px;
    }

    .page-gdpr__content-wrapper--reverse {
        flex-direction: column; /* Maintain column stacking for reverse as well */
    }

    .page-gdpr__list--grid {
        grid-template-columns: 1fr; /* Single column for security cards */
        gap: 20px;
    }

    .page-gdpr__security-card {
        padding: 25px;
    }

    .page-gdpr__card-title {
        font-size: 1.2em;
    }

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

    .page-gdpr__faq-answer {
        padding: 0 20px 15px;
    }
}