/* style/gdpr.css */

/* Base styles for the GDPR page */
.page-gdpr {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-main, #F2FFF6); /* Main text color */
    background-color: var(--bg-color, #08160F); /* Page background color */
}

/* Hero Section */
.page-gdpr__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding as per instruction */
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden; /* Ensure image doesn't overflow */
}

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

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

.page-gdpr__main-title {
    font-size: clamp(2.2em, 4vw, 3.5em); /* Responsive font size for H1 */
    font-weight: 700;
    line-height: 1.2;
    color: var(--gold, #F2C14E); /* Gold for main title */
    margin-bottom: 15px;
}

.page-gdpr__hero-description {
    font-size: 1.1em;
    color: var(--text-secondary, #A7D9B8); /* Secondary text color */
    margin-bottom: 30px;
}

/* Content Area */
.page-gdpr__content-area {
    padding: 60px 20px;
    color: var(--text-main, #F2FFF6); /* Text Main for content */
    background-color: var(--bg-color, #08160F); /* Background color */
}

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

.page-gdpr__section-title {
    font-size: clamp(1.8em, 3vw, 2.8em);
    font-weight: 600;
    color: var(--glow, #57E38D); /* Glow color for section titles */
    margin-bottom: 30px;
    text-align: center;
    padding-top: 20px;
}

.page-gdpr__sub-title {
    font-size: clamp(1.3em, 2.5vw, 1.8em);
    font-weight: 500;
    color: var(--gold, #F2C14E); /* Gold for sub titles */
    margin-top: 40px;
    margin-bottom: 15px;
}

.page-gdpr__text-block p {
    margin-bottom: 15px;
    font-size: 1.05em;
    color: var(--text-main, #F2FFF6); /* Text Main color */
}

.page-gdpr__text-block ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 15px;
    color: var(--text-main, #F2FFF6); /* Text Main color */
}

.page-gdpr__text-block li {
    margin-bottom: 8px;
    font-size: 1.05em;
    color: var(--text-main, #F2FFF6); /* Text Main color */
}

.page-gdpr__text-block a {
    color: var(--glow, #57E38D); /* Link color */
    text-decoration: underline;
}

.page-gdpr__text-block a:hover {
    color: var(--gold, #F2C14E);
}

.page-gdpr__content-image {
    width: 100%;
    height: auto;
    display: block;
    max-width: 800px; /* Recommended max-width for content images */
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-gdpr__divider {
    border-top: 1px solid var(--divider, #1E3A2A); /* Divider color */
    margin: 50px auto;
    max-width: 80%;
}

/* Contact List specific styling */
.page-gdpr__contact-list {
    list-style: none; /* Remove default list style */
    padding-left: 0;
    margin-top: 20px;
}

.page-gdpr__contact-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 1.1em;
    color: var(--text-main, #F2FFF6);
}

.page-gdpr__contact-list li::before {
    content: '•'; /* Custom bullet point */
    position: absolute;
    left: 0;
    color: var(--glow, #57E38D); /* Glow color for bullet */
    font-weight: bold;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-gdpr__hero-content {
        max-width: 768px;
    }
    .page-gdpr__main-title {
        font-size: clamp(2em, 5vw, 3em);
    }
    .page-gdpr__section-title {
        font-size: clamp(1.6em, 4vw, 2.5em);
    }
    .page-gdpr__sub-title {
        font-size: clamp(1.2em, 3vw, 1.6em);
    }
    .page-gdpr__content-image {
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    /* HERO 主图区域 */
    .page-gdpr__hero-section {
        padding-top: 10px !important; /* Ensure small top padding */
        padding-bottom: 30px;
    }
    .page-gdpr__hero-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }
    .page-gdpr__hero-content {
        padding: 0 15px;
    }
    .page-gdpr__main-title {
        font-size: clamp(1.8em, 6vw, 2.5em) !important;
        margin-bottom: 10px;
    }
    .page-gdpr__hero-description {
        font-size: 1em !important;
        margin-bottom: 20px;
    }

    /* 其他内容模块 */
    .page-gdpr__content-area {
        padding: 40px 15px;
    }
    .page-gdpr__container {
        padding: 0 15px !important; /* Add padding to container */
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-gdpr__section-title {
        font-size: clamp(1.5em, 5vw, 2em) !important;
        margin-bottom: 25px;
    }
    .page-gdpr__sub-title {
        font-size: clamp(1.1em, 4vw, 1.4em) !important;
        margin-top: 30px;
        margin-bottom: 10px;
    }
    .page-gdpr__text-block p,
    .page-gdpr__text-block li {
        font-size: 0.95em !important;
    }

    /* 通用图片与容器 */
    .page-gdpr img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        border-radius: 6px; /* Slightly smaller border-radius for mobile */
    }
    .page-gdpr__content-image {
        margin: 20px auto !important;
    }

    /* 按钮与按钮容器 */
    .page-gdpr__cta-button,
    .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-left: 15px;
      padding-right: 15px;
    }
    .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;
      padding-right: 15px;
      overflow: hidden !important;
      flex-wrap: wrap !important; /* For multiple buttons */
      gap: 10px;
      display: flex;
      flex-direction: column; /* Often better for mobile buttons */
    }
}