/* style/gdpr.css */
.page-gdpr {
    font-family: 'Arial', sans-serif;
    color: #FFF6D6; /* Text Main */
    background-color: #0A0A0A; /* Background */
    line-height: 1.6;
}

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

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

.page-gdpr__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 10px; /* Small top padding, header offset handled by body */
    padding-bottom: 40px;
}

.page-gdpr__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    margin-bottom: 30px; /* Space between image and content */
}

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

.page-gdpr__main-title {
    font-size: clamp(2em, 3.5vw, 3.2em);
    font-weight: 700;
    color: #FFD36B; /* Glow */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

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

.page-gdpr__section-title {
    font-size: 2.5em;
    font-weight: 700;
    color: #F2C14E; /* Primary Color */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-gdpr__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #F2C14E;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-gdpr__sub-title {
    font-size: 1.8em;
    color: #FFD36B; /* Glow */
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-gdpr__text-block {
    font-size: 1em;
    margin-bottom: 20px;
    color: #FFF6D6;
}

.page-gdpr__text-block a {
    color: #F2C14E;
    text-decoration: underline;
}

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

.page-gdpr__list li {
    margin-bottom: 10px;
    font-size: 1em;
}

.page-gdpr__list li strong {
    color: #FFD36B;
}

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

.page-gdpr__card {
    background: #111111; /* Card BG */
    border: 1px solid #3A2A12; /* Border */
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: #FFF6D6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-gdpr__content-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    margin: 40px 0;
    object-fit: cover;
}

.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: 1.1em;
    transition: all 0.3s ease;
    text-align: center;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-gdpr__btn-primary {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color */
    color: #ffffff; /* Button text always white */
    border: none;
    box-shadow: 0 4px 10px rgba(242, 193, 78, 0.4);
}

.page-gdpr__btn-primary:hover {
    background: linear-gradient(180deg, #FFE080 0%, #E6B02A 100%);
    box-shadow: 0 6px 15px rgba(242, 193, 78, 0.6);
}

.page-gdpr__btn-secondary {
    background: transparent;
    color: #F2C14E; /* Primary Color */
    border: 2px solid #F2C14E; /* Primary Color */
}

.page-gdpr__btn-secondary:hover {
    background: rgba(242, 193, 78, 0.1);
    color: #FFD36B;
    border-color: #FFD36B;
}

.page-gdpr__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .page-gdpr__main-title {
        font-size: 2.8em;
    }

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

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

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

    .page-gdpr__card {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .page-gdpr {
        font-size: 16px;
        line-height: 1.6;
    }

    /* HERO 主图区域 */
    .page-gdpr__hero-section {
        padding-top: 10px !important;
        padding-bottom: 20px !important;
    }

    .page-gdpr__hero-image {
        margin-bottom: 20px !important;
    }

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

    .page-gdpr__main-title {
        font-size: 2.2em !important;
        margin-bottom: 15px !important;
    }

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

    .page-gdpr__section {
        padding: 40px 0 !important;
    }

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

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

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

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

    /* 产品展示图区域 - GDPR页面没有明确的产品展示图，但通用grid和card需要适配 */
    .page-gdpr__grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        margin-bottom: 30px !important;
    }

    .page-gdpr__card {
        padding: 20px !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-gdpr__card-title {
        font-size: 1.2em !important;
        margin-bottom: 10px !important;
    }

    /* 通用图片与容器 */
    .page-gdpr img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        margin: 20px 0 !important;
    }
    
    .page-gdpr__section,
    .page-gdpr__card,
    .page-gdpr__container {
        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: 12px 20px !important;
        font-size: 1em !important;
    }
    
    .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 !important;
        padding-right: 15px !important;
        flex-direction: column !important; /* 移动端垂直排列 */
        gap: 10px !important;
    }

    /* 其他内容模块 */
    .page-gdpr__list {
        padding-left: 10px !important;
    }
}