/* Privacy Policy Page Styles - Light Theme */

.page-hero {
    position: relative;
    padding: 180px 0 100px;
    background: var(--bg-page);
    overflow: hidden;
    text-align: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(to bottom, rgba(10, 22, 40, 0.75), rgba(10, 22, 40, 0.9)),
        url('../../images/banner.png') center center / cover no-repeat;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-label {
    display: inline-block;
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 8px 20px;
    background: rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 2px;
    margin-bottom: 32px;
    font-weight: 600;
    border-left: 3px solid var(--primary);
    color: var(--primary-light);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 32px;
    letter-spacing: -1px;
    color: #ffffff;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.2s;
}

.page-hero h1 span:last-child {
    display: block;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.4s;
}

.hero-label.revealed,
.page-hero h1.revealed,
.hero-subtitle.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Policy Content */
.policy-section {
    background: var(--bg-surface);
    padding: 100px 0;
}

.policy-content {
    max-width: 820px;
    margin: 0 auto;
}

.policy-date {
    font-size: 0.9rem;
    color: var(--text-muted, #9ca3af);
    margin-bottom: 48px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.policy-content h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-title);
    margin: 48px 0 16px;
    padding-left: 16px;
    border-left: 3px solid var(--primary);
}

.policy-content h2:first-of-type {
    margin-top: 0;
}

.policy-content p {
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 16px;
}

.policy-content ul {
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 16px;
    padding-left: 24px;
}

.policy-content ul li {
    margin-bottom: 8px;
}

.policy-contact-box {
    background: #f0f4f8;
    border-radius: 4px;
    padding: 28px 32px;
    margin-top: 48px;
}

.policy-contact-box p {
    margin-bottom: 8px;
}

.policy-contact-box p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 120px 20px 70px;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .policy-section {
        padding: 60px 20px;
    }

    .policy-content h2 {
        font-size: 1.2rem;
    }

    .policy-contact-box {
        padding: 20px 16px;
    }
}
