:root {
    --good88-bg-dark: #08160F;
    --good88-card-bg: #11271B;
    --good88-text-main: #F2FFF6;
    --good88-text-secondary: #A7D9B8;
    --good88-border: #2E7A4E;
    --good88-glow: #57E38D;
    --good88-gold: #F2C14E;
    --good88-divider: #1E3A2A;
    --good88-deep-green: #0A4B2C;
    --good88-primary-color: #11A84E;
    --good88-secondary-color: #22C768;
    --good88-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

.page-privacy-policy {
    background-color: var(--good88-bg-dark); /* Assume body background is dark from shared.css */
    color: var(--good88-text-main); /* Light text for dark background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Hero Section */
.page-privacy-policy__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Stack image and content vertically */
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px; /* General padding */
    padding-top: 10px; /* Small top padding as body handles header offset */
    box-sizing: border-box;
}

.page-privacy-policy__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    margin-bottom: 30px; /* Space between image and content */
}

.page-privacy-policy__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 10px;
}

.page-privacy-policy__hero-content {
    width: 100%;
    max-width: 900px;
    padding: 0 20px;
    box-sizing: border-box;
    color: var(--good88-text-main);
}

.page-privacy-policy__main-title {
    font-size: clamp(2em, 4vw, 3.5em); /* Responsive H1, no fixed large value */
    color: var(--good88-gold);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.page-privacy-policy__intro-text {
    font-size: 1.2em;
    color: var(--good88-text-secondary);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}