/* Privacy Policy — dark theme */
body {
    background-color: #0d0d0d;
    color: #d4d4d4;
    line-height: 1.7;
}

.privacy-container {
    width: 90%;
    max-width: 860px;
    margin: 0 auto;
    padding: 3rem 0 4rem;
}

/* Header */
.privacy-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.privacy-header h1 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 0.75rem;
    letter-spacing: -0.03em;
}

.privacy-intro {
    font-size: 1.05rem;
    color: #888;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.65;
}

/* Content card */
.privacy-content {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
    border-radius: 16px;
    margin-bottom: 2rem;
}

.privacy-content p {
    margin-bottom: 1.35rem;
    font-size: 0.97rem;
    color: #c0c0c0;
}

.privacy-content p:last-child {
    margin-bottom: 0;
}

.privacy-content a {
    color: #e879a0;
    text-decoration: none;
    transition: opacity 0.2s;
}

.privacy-content a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Footer note */
.privacy-footer {
    text-align: center;
    padding: 1.5rem 0;
    color: #555;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 680px) {
    .privacy-container {
        padding: 2rem 0 3rem;
    }

    .privacy-content {
        padding: 1.5rem;
    }

    .privacy-header h1 {
        font-size: 1.75rem;
    }
}