:root {
    --page-gdpr-primary-color: #2F6BFF;
    --page-gdpr-secondary-color: #6FA3FF;
    --page-gdpr-button-gradient: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    --page-gdpr-card-bg: #FFFFFF;
    --page-gdpr-background: #F4F7FB;
    --page-gdpr-text-main: #1F2D3D;
    --page-gdpr-text-custom: #000000;
    --page-gdpr-border-color: #D6E2FF;
    --page-gdpr-glow-color: #A5C4FF;
}

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

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

.page-gdpr__hero-section {
    position: relative;
    padding-top: 10px;
    margin-bottom: 40px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: var(--page-gdpr-primary-color);
    color: #ffffff;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.page-gdpr__hero-image-wrapper {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-gdpr__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-gdpr__hero-content {
    padding: 40px 20px;
    max-width: 900px;
    width: 100%;
    box-sizing: border-box;
}

.page-gdpr__main-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    color: #ffffff;
}

.page-gdpr__description {
    font-size: clamp(16px, 1.8vw, 20px);
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.page-gdpr__section-title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: var(--page-gdpr-text-custom);
    text-align: center;
    margin-bottom: 30px;
    padding-top: 40px;
}

.page-gdpr__text-block {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--page-gdpr-text-main);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-gdpr__card {
    background-color: var(--page-gdpr-card-bg);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid var(--page-gdpr-border-color);
    color: var(--page-gdpr-text-main);
}

.page-gdpr__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
    max-width: 100%;
}

.page-gdpr__card-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--page-gdpr-text-custom);
    margin-bottom: 15px;
}

.page-gdpr__list {
    max-width: 900px;
    margin: 0 auto 30px;
    padding-left: 25px;
    list-style-type: disc;
    color: var(--page-gdpr-text-main);
}

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

.page-gdpr__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-gdpr__dark-section {
    background-color: var(--page-gdpr-primary-color);
    color: #ffffff;
    padding: 60px 20px;
}
.page-gdpr__dark-section .page-gdpr__section-title,
.page-gdpr__dark-section .page-gdpr__text-block,
.page-gdpr__dark-section .page-gdpr__list-item {
    color: #ffffff;
}
.page-gdpr__dark-section .page-gdpr__text-block {
    opacity: 0.9;
}

.page-gdpr__light-bg {
    background-color: var(--page-gdpr-background);
    padding: 60px 20px;
}
.page-gdpr__light-bg .page-gdpr__section-title {
    color: var(--page-gdpr-text-custom);
}
.page-gdpr__light-bg .page-gdpr__text-block {
    color: var(--page-gdpr-text-main);
}

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

.page-gdpr__btn-primary {
    background: var(--page-gdpr-button-gradient);
    color: #ffffff;
    border: none;
    box-shadow: 0 5px 15px rgba(47, 107, 255, 0.4);
}

.page-gdpr__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(47, 107, 255, 0.6);
}

.page-gdpr__btn-secondary {
    background: #ffffff;
    color: var(--page-gdpr-primary-color);
    border: 2px solid var(--page-gdpr-primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-gdpr__btn-secondary:hover {
    background: var(--page-gdpr-primary-color);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(47, 107, 255, 0.4);
}

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

.page-gdpr__contact-list {
    list-style: none;
    padding: 0;
    margin: 30px auto 40px;
    max-width: 600px;
}

.page-gdpr__contact-item {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--page-gdpr-text-main);
}
.page-gdpr__contact-item strong {
    color: var(--page-gdpr-text-custom);
}

details.page-gdpr__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid var(--page-gdpr-border-color);
  overflow: hidden;
  background: var(--page-gdpr-card-bg);
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
details.page-gdpr__faq-item summary.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  color: var(--page-gdpr-text-custom);
}
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: var(--page-gdpr-background);
}
.page-gdpr__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
}
.page-gdpr__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: var(--page-gdpr-primary-color);
  flex-shrink: 0;
  margin-left: 20px;
  width: 32px;
  text-align: center;
  transition: transform 0.3s ease;
}
details.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
    transform: rotate(45deg);
}
details.page-gdpr__faq-item .page-gdpr__faq-answer {
  padding: 0 25px 25px;
  background: var(--page-gdpr-background);
  border-radius: 0 0 10px 10px;
  color: var(--page-gdpr-text-main);
}
.page-gdpr__faq-answer p {
    margin-top: 10px;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.6;
}

.page-gdpr img {
    max-width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 1024px) {
    .page-gdpr__hero-content {
        padding: 30px 20px;
    }
    .page-gdpr__main-title {
        font-size: clamp(26px, 4.5vw, 40px);
    }
    .page-gdpr__description {
        font-size: clamp(15px, 2vw, 18px);
    }
    .page-gdpr__section-title {
        font-size: clamp(22px, 3.5vw, 30px);
    }
    .page-gdpr__text-block,
    .page-gdpr__list-item,
    .page-gdpr__faq-qtext,
    .page-gdpr__faq-answer p {
        font-size: 16px;
    }
    .page-gdpr__card-title {
        font-size: 20px;
    }
    .page-gdpr__btn-primary,
    .page-gdpr__btn-secondary {
        padding: 12px 25px;
        font-size: 16px;
    }
    .page-gdpr__faq-qtext {
        font-size: 17px;
    }
    .page-gdpr__faq-toggle {
        font-size: 26px;
        width: 30px;
    }
}

@media (max-width: 768px) {
    .page-gdpr__container {
        padding: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* HERO 主图区域 */
    .page-gdpr__hero-section {
        padding-top: 10px;
        margin-bottom: 30px;
        border-radius: 0 0 10px 10px;
    }
    .page-gdpr__hero-image-wrapper {
        max-height: 300px;
    }
    .page-gdpr__hero-image {
        object-fit: contain !important;
        aspect-ratio: unset !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-gdpr__hero-content {
        padding: 25px 15px;
    }
    .page-gdpr__main-title {
        font-size: clamp(24px, 7vw, 36px);
        text-align: center;
    }
    .page-gdpr__description {
        font-size: clamp(15px, 4vw, 17px);
        text-align: center;
    }

    /* Content Grid (Product display, etc.) */
    .page-gdpr__content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-gdpr__card {
        padding: 20px;
    }
    .page-gdpr__card-image {
        height: 180px;
    }

    /* Section Titles + Long Text SEO Area */
    .page-gdpr__section-title {
        font-size: clamp(20px, 6vw, 28px);
        padding-top: 30px;
        margin-bottom: 20px;
        text-align: center;
    }
    .page-gdpr__text-block {
        font-size: 16px;
        max-width: 100% !important;
        padding-left: 0;
        padding-right: 0;
        text-align: left;
    }
    .page-gdpr__list {
        padding-left: 20px;
        max-width: 100%;
    }
    .page-gdpr__list-item {
        font-size: 16px;
    }
    .page-gdpr__content-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        margin: 20px auto;
    }

    /* General Images and Containers */
    .page-gdpr img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block;
    }
    .page-gdpr__section,
    .page-gdpr__card,
    .page-gdpr__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Buttons and Button Containers */
    .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;
        padding: 12px 15px;
        font-size: 16px;
        margin-bottom: 10px;
    }
    .page-gdpr__hero-content .page-gdpr__btn-primary {
        margin-bottom: 0;
    }
    .page-gdpr__contact-section .page-gdpr__btn-secondary {
        margin-bottom: 0;
    }
    .page-gdpr__button-group {
        display: flex;
        flex-direction: column;
        gap: 10px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* FAQ Mobile */
    details.page-gdpr__faq-item summary.page-gdpr__faq-question {
        padding: 15px;
    }
    .page-gdpr__faq-qtext {
        font-size: 16px;
    }
    .page-gdpr__faq-toggle {
        font-size: 24px;
        width: 28px;
        margin-left: 15px;
    }
    details.page-gdpr__faq-item .page-gdpr__faq-answer {
        padding: 0 15px 15px;
    }
    .page-gdpr__faq-answer p {
        font-size: 15px;
    }
}