/* ===== Privacy Policy Page ===== */

.privacy-hero {
    text-align: center;
    margin-bottom: 36px;
}

.privacy-hero h1 {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.8em;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.privacy-hero .update-date {
    color: var(--text-muted);
    font-style: italic;
    font-size: 1em;
}

.privacy-intro {
    background: var(--bg-card);
    padding: 36px;
    border-radius: var(--radius-lg);
    text-align: center;
    margin-bottom: 36px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.privacy-intro p {
    font-size: 1.1em;
    color: var(--text);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.privacy-section {
    margin-bottom: 36px;
}

.privacy-section h2 {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.9em;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.privacy-section h2 i {
    margin-right: 12px;
    font-size: 0.8em;
}

.privacy-section h3 {
    color: var(--brand);
    font-size: 1.35em;
    font-weight: 600;
    margin-top: 28px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.privacy-section h3 i {
    margin-right: 10px;
    font-size: 0.7em;
}

.privacy-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 1.05em;
}

.privacy-section ul {
    margin-left: 28px;
    margin-bottom: 22px;
}

.privacy-section li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 10px;
    font-size: 1.05em;
    position: relative;
    padding-left: 22px;
}

.privacy-section li::before {
    content: '\25B8';
    color: var(--brand);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.privacy-section strong {
    color: var(--text);
    font-weight: 600;
}

.highlight-box {
    background: var(--brand-bg);
    border: 1px solid rgba(229,57,53,0.1);
    border-radius: var(--radius-md);
    padding: 28px;
    margin: 28px 0;
    position: relative;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--brand-gradient);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.contact-section {
    background: var(--bg-card);
    padding: 36px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--border);
    margin-top: 40px;
    box-shadow: var(--shadow-sm);
}

.contact-section h2 {
    color: var(--text);
    margin-bottom: 18px;
    font-size: 1.8em;
}

.contact-item {
    display: inline-block;
    margin: 12px;
    padding: 18px 28px;
    background: var(--bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: all var(--duration) var(--ease);
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.contact-item i {
    color: var(--brand);
    font-size: 1.4em;
    margin-bottom: 8px;
    display: block;
}

.contact-item a {
    color: var(--brand);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05em;
    transition: color var(--duration) var(--ease);
}

.contact-item a:hover {
    color: var(--brand-light);
}

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    margin: 36px 0;
}

@media (max-width: 768px) {
    .privacy-hero h1 { font-size: 2.2em; }
    .privacy-intro { padding: 20px; }
    .privacy-section h2 { font-size: 1.6em; flex-direction: column; align-items: flex-start; }
    .privacy-section h2 i { margin-right: 0; margin-bottom: 8px; }
    .privacy-section h3 { font-size: 1.2em; flex-direction: column; align-items: flex-start; }
    .privacy-section h3 i { margin-right: 0; margin-bottom: 4px; }
    .contact-section { padding: 20px; }
    .contact-section h2 { font-size: 1.5em; }
    .contact-item { display: block; margin: 8px 0; padding: 14px 18px; }
}