/* Privacy Policy Page */

.privacy-hero {
    padding: 8rem 0 4rem;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border);
    position: relative;
}

.privacy-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--accent);
}

.privacy-hero h1 {
    font-size: 3rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.privacy-meta {
    color: var(--text-secondary);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* Content */
.privacy-content {
    padding: 5rem 0 6rem;
    background: var(--bg-secondary);
}

.policy-body {
    max-width: 760px;
    margin: 0 auto;
}

.policy-plain {
    padding-bottom: 2.5rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid var(--border);
}

.policy-plain p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.policy-plain p:last-child {
    margin-bottom: 0;
}

/* Sections */
.policy-section {
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--border);
}

.policy-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.policy-section h2 {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}

.policy-section h3 {
    font-size: 1rem;
    color: var(--text-primary);
    margin: 1.75rem 0 0.75rem;
    font-weight: 600;
}

.policy-section h3:first-child {
    margin-top: 0;
}

.policy-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.975rem;
}

.policy-section p:last-child {
    margin-bottom: 0;
}

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

.policy-section a {
    color: #a374f7;
    text-decoration: none;
    transition: color 0.2s ease;
}

.policy-section a:hover {
    color: var(--text-primary);
}

/* No-collect list */
.policy-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.policy-list li {
    color: var(--text-secondary);
    font-size: 0.975rem;
    line-height: 1.6;
    padding-left: 1.5rem;
    position: relative;
}

.policy-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

/* Contact block */
.policy-contact {
    background: rgba(81, 10, 148, 0.06);
    border: 1px solid rgba(81, 10, 148, 0.2);
    padding: 1.5rem;
    margin-top: 1rem;
}

.policy-contact p {
    margin-bottom: 0;
}

/* Footer privacy link */
footer a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

footer a:hover {
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .privacy-hero {
        padding: 7rem 0 3rem;
    }

    .privacy-hero h1 {
        font-size: 2.2rem;
    }

    .privacy-content {
        padding: 3rem 0 4rem;
    }
}
