/* style/gdpr.css */
/* 页面完整样式代码 - 注意：所有选择器必须添加页面前缀 */

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

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

.page-gdpr__hero-section {
    background: linear-gradient(135deg, #1A2B4C, #2c4a7c);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-gdpr__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFD700;
}

.page-gdpr__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #e0e0e0;
}

.page-gdpr__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A2B4C;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 1.1em;
}

.page-gdpr__cta-button:hover {
    background-color: #e6c200;
    color: #0d1a2e;
}

.page-gdpr__content-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.page-gdpr__section-title {
    font-size: 2em;
    color: #1A2B4C;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
}

.page-gdpr__paragraph {
    margin-bottom: 15px;
    color: #444;
}

.page-gdpr__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #444;
}

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

.page-gdpr__list-item strong {
    color: #1A2B4C;
}

.page-gdpr__image-wrapper {
    text-align: center;
    margin: 40px 0;
}

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

.page-gdpr__cta-banner {
    background: #1A2B4C;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.page-gdpr__cta-title {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #FFD700;
}

.page-gdpr__cta-description {
    font-size: 1.1em;
    max-width: 700px;
    margin: 0 auto 30px auto;
    color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-gdpr__hero-title {
        font-size: 2em;
    }
    .page-gdpr__hero-description {
        font-size: 1em;
    }
    .page-gdpr__section-title {
        font-size: 1.6em;
    }
    .page-gdpr__cta-title {
        font-size: 2em;
    }
    .page-gdpr__cta-description {
        font-size: 1em;
    }
    .page-gdpr__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-gdpr__list {
        margin-left: 20px;
    }
}

@media (max-width: 480px) {
    .page-gdpr__hero-title {
        font-size: 1.8em;
    }
    .page-gdpr__hero-section {
        padding: 60px 0;
    }
    .page-gdpr__content-section {
        padding: 40px 0;
    }
    .page-gdpr__section-title {
        font-size: 1.4em;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    .page-gdpr__cta-title {
        font-size: 1.8em;
    }
    .page-gdpr__cta-banner {
        padding: 40px 0;
    }
}