:root {
    --primary-color: #FF8C1A;
    --secondary-color: #FFA53A;
    --card-bg-color: #17191F;
    --background-color: #0D0E12;
    --text-main-color: #FFF3E6;
    --border-color: #A84F0C;
    --glow-color: #FFB04D;
    --deep-orange-color: #D96800;
}

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

.page-gdpr__hero-section {
    position: relative;
    padding-top: 10px; /* Adhering to the 10px top padding rule if shared.css handles body padding */
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.page-gdpr__hero-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    display: block;
    margin-bottom: 30px;
}

.page-gdpr__hero-content {
    max-width: 900px;
    padding: 0 20px;
    z-index: 1;
    color: var(--text-main-color);
}

.page-gdpr__main-title {
    font-size: clamp(2em, 4vw, 3em);
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: 0.05em;
    max-width: 100%;
    word-wrap: break-word;
}

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

.page-gdpr__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--deep-orange-color) 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    max-width: 100%; /* Ensure button adapts to width */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-gdpr__cta-button:hover {
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--deep-orange-color) 100%);
    transform: translateY(-2px);
}

.page-gdpr__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: var(--card-bg-color);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    margin-bottom: 30px;
}

.page-gdpr__section-title {
    font-size: 2.2em;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
    font-weight: bold;
}

.page-gdpr__sub-title {
    font-size: 1.6em;
    color: var(--secondary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

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

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

.page-gdpr__list-item {
    margin-bottom: 8px;
    color: var(--text-main-color);
}

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

.page-gdpr__image--right {
    float: right;
    margin-left: 25px;
    max-width: 40%;
}

.page-gdpr__image--left {
    float: left;
    margin-right: 25px;
    max-width: 40%;
}

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

.page-gdpr__contact-item {
    margin-bottom: 10px;
    color: var(--text-main-color);
    font-size: 1.1em;
}

.page-gdpr__contact-link {
    color: var(--secondary-color);
    text-decoration: none;
}

.page-gdpr__contact-link:hover {
    text-decoration: underline;
}

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

@media (min-width: 769px) {
    .page-gdpr__hero-image {
        max-height: 550px;
    }
}

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

    .page-gdpr__hero-image {
        max-height: 300px;
        margin-bottom: 20px;
    }

    .page-gdpr__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
        padding: 0 15px;
    }

    .page-gdpr__hero-description {
        font-size: 1em;
        padding: 0 15px;
    }

    /* 按钮与按钮容器 */
    .page-gdpr__cta-button {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 20px;
        font-size: 1em;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
    .page-gdpr__cta-button--bottom {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* 通用图片与容器 */
    .page-gdpr img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important; /* Ensure padding/border is included in width */
    }

    .page-gdpr__container {
        padding: 20px 15px;
        margin-bottom: 20px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

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

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

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

    .page-gdpr__list {
        padding-left: 15px;
    }

    .page-gdpr__list-item {
        font-size: 0.95em;
    }

    /* Floating images */
    .page-gdpr__image--right,
    .page-gdpr__image--left {
        float: none;
        margin: 20px auto;
        max-width: 100% !important;
        width: 100% !important;
        display: block;
        box-sizing: border-box !important;
    }

    /* Other content modules (e.g., introduction, data collection) */
    .page-gdpr__introduction-section .page-gdpr__container,
    .page-gdpr__what-is-gdpr-section .page-gdpr__container,
    .page-gdpr__data-collection-section .page-gdpr__container,
    .page-gdpr__data-usage-section .page-gdpr__container,
    .page-gdpr__data-sharing-section .page-gdpr__container,
    .page-gdpr__your-rights-section .page-gdpr__container,
    .page-gdpr__security-measures-section .page-gdpr__container,
    .page-gdpr__data-retention-section .page-gdpr__container,
    .page-gdpr__international-transfers-section .page-gdpr__container,
    .page-gdpr__policy-changes-section .page-gdpr__container,
    .page-gdpr__contact-section .page-gdpr__container {
        padding-left: 15px;
        padding-right: 15px;
    }
}