:root {
    --bg-dark: #08160F;
    --card-bg: #11271B;
    --text-main: #F2FFF6;
    --text-secondary: #A7D9B8;
    --btn-gradient-start: #2AD16F;
    --btn-gradient-end: #13994A;
    --border-color: #2E7A4E;
    --divider-color: #1E3A2A;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --deep-green: #0A4B2C;
}

.page-privacy-policy {
    color: var(--text-main);
    background-color: var(--bg-dark);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    font-size: 1rem;
    padding-bottom: 60px;
}

.page-privacy-policy__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px 40px;
    background-color: var(--card-bg);
    box-sizing: border-box;
}

.page-privacy-policy__hero-image {
    width: 100%;
    max-width: 1920px;
    height: auto;
    display: block;
    margin-bottom: 30px;
    border-radius: 8px;
    object-fit: cover;
}

.page-privacy-policy__hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-privacy-policy__hero-content h1 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    color: var(--gold-color);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.page-privacy-policy__hero-content p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

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

.page-privacy-policy__section {
    padding: 40px 0;
    border-bottom: 1px solid var(--divider-color);
}

.page-privacy-policy__section:last-of-type {
    border-bottom: none;
}

.page-privacy-policy__section h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--gold-color);
    margin-bottom: 25px;
    font-weight: 600;
    text-align: center;
    padding-top: 20px;
}

.page-privacy-policy__section h3 {
    font-size: clamp(1.4rem, 2.8vw, 1.8rem);
    color: var(--text-main);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 500;
}

.page-privacy-policy__section p {
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.page-privacy-policy__section ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.page-privacy-policy__section ul li {
    margin-bottom: 8px;
}

.page-privacy-policy__section a {
    color: var(--glow-color);
    text-decoration: underline;
}

.page-privacy-policy__section a:hover {
    text-decoration: none;
    color: var(--gold-color);
}

.page-privacy-policy__image-content {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    object-fit: cover;
}

.page-privacy-policy__cta-section {
    text-align: center;
    padding: 60px 20px;
    background-color: var(--card-bg);
    margin-top: 40px;
    border-radius: 8px;
}

.page-privacy-policy__cta-section h2 {
    font-size: clamp(2rem, 3.8vw, 2.8rem);
    color: var(--gold-color);
    margin-bottom: 20px;
}

.page-privacy-policy__cta-section p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-privacy-policy__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, var(--btn-gradient-start) 0%, var(--btn-gradient-end) 100%);
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(180deg, var(--btn-gradient-end) 0%, var(--btn-gradient-start) 100%);
}

.page-privacy-policy__copyright {
    text-align: center;
    padding: 30px 20px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 40px;
}

@media (max-width: 768px) {
    .page-privacy-policy {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .page-privacy-policy__hero-section {
        padding: 60px 15px 30px;
    }

    .page-privacy-policy__hero-content h1 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .page-privacy-policy__hero-content p {
        font-size: 1rem;
    }

    .page-privacy-policy__container {
        padding: 0 15px;
    }

    .page-privacy-policy__section {
        padding: 30px 0;
    }

    .page-privacy-policy__section h2 {
        font-size: clamp(1.6rem, 5vw, 2rem);
    }

    .page-privacy-policy__section h3 {
        font-size: clamp(1.2rem, 4vw, 1.5rem);
    }

    .page-privacy-policy__hero-image,
    .page-privacy-policy__image-content {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-privacy-policy__hero-section,
    .page-privacy-policy__section,
    .page-privacy-policy__cta-section,
    .page-privacy-policy__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-privacy-policy__cta-button {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 20px;
    }

    .page-privacy-policy__cta-section {
        padding: 40px 15px;
    }
}