/* style/gdpr.css */

:root {
    --primary-color: #C61F1F;
    --secondary-color: #E53030;
    --button-gradient: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
    --card-bg: #2A1212;
    --background-color: #140C0C;
    --text-main-color: #FFF1E8;
    --border-color: #6A1E1E;
    --gold-color: #F3C54D;
    --deep-red-color: #7E0D0D;
}

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

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

.page-gdpr__hero-image-wrapper {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    margin-bottom: 20px;
}

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

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

.page-gdpr__main-title {
    font-size: 2.8em;
    font-weight: bold;
    color: var(--gold-color);
    margin-bottom: 20px;
    line-height: 1.2;
    max-width: 100%;
}

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

.page-gdpr__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--button-gradient);
    color: var(--text-main-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1em;
    transition: background 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-gdpr__cta-button:hover {
    background: linear-gradient(180deg, #D86A14 0%, #FFB04A 100%);
}

.page-gdpr__section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background-color: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.page-gdpr__dark-section {
    background-color: var(--deep-red-color);
    color: var(--text-main-color);
}

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

.page-gdpr__text-block {
    font-size: 1.05em;
    line-height: 1.7;
    color: var(--text-main-color);
}

.page-gdpr__text-block p {
    margin-bottom: 15px;
}

.page-gdpr__text-block h3 {
    font-size: 1.5em;
    color: var(--gold-color);
    margin-top: 25px;
    margin-bottom: 15px;
}

.page-gdpr__principle-list,
.page-gdpr__rights-list,
.page-gdpr__data-collection-list,
.page-gdpr__data-purpose-list,
.page-gdpr__security-measures-list,
.page-gdpr__contact-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-gdpr__principle-item,
.page-gdpr__rights-item,
.page-gdpr__data-collection-list li,
.page-gdpr__data-purpose-list li,
.page-gdpr__security-measures-list li,
.page-gdpr__contact-list li {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 15px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-gdpr__principle-item:hover,
.page-gdpr__rights-item:hover,
.page-gdpr__data-collection-list li:hover,
.page-gdpr__data-purpose-list li:hover,
.page-gdpr__security-measures-list li:hover,
.page-gdpr__contact-list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-gdpr__principle-title,
.page-gdpr__rights-title,
.page-gdpr__subsection-title {
    color: var(--gold-color);
    font-size: 1.3em;
    margin-bottom: 10px;
}

.page-gdpr__contact-list a {
    color: var(--gold-color);
    text-decoration: none;
    font-weight: bold;
}

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

.page-gdpr__content-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin-top: 30px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* General image styling for content area */
.page-gdpr img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

    .page-gdpr__hero-description {
        font-size: 1.1em;
    }

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

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

    .page-gdpr__principle-item,
    .page-gdpr__rights-item,
    .page-gdpr__data-collection-list li,
    .page-gdpr__data-purpose-list li,
    .page-gdpr__security-measures-list li,
    .page-gdpr__contact-list li {
        padding: 12px 18px;
    }
}

@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;
    }

    .page-gdpr__hero-image-wrapper {
        max-height: 300px;
    }

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

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

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

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

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

    .page-gdpr__section {
        margin: 20px auto;
        padding: 15px;
    }

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

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

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

    .page-gdpr__principle-item,
    .page-gdpr__rights-item,
    .page-gdpr__data-collection-list li,
    .page-gdpr__data-purpose-list li,
    .page-gdpr__security-measures-list li,
    .page-gdpr__contact-list li {
        padding: 10px 15px;
        margin-bottom: 10px;
    }

    /* 产品展示图区域 (Not explicitly in this page, but as a mandatory rule) */
    .page-gdpr__products-section,
    .page-gdpr__products-container,
    .page-gdpr__products-grid {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
        /* If there were a grid, it would adapt here, e.g., display: flex; flex-wrap: wrap; justify-content: center; */
    }
}