    .privacy-container {
        max-width: 900px;
        margin: 80px auto 40px;
        padding: 20px;
        background: white;
        border-radius: 12px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .privacy-header {
        text-align: center;
        margin-bottom: 40px;
        padding-bottom: 20px;
        border-bottom: 2px solid #e2e8f0;
    }

    .privacy-title {
        font-size: 32px;
        font-weight: 700;
        color: #1e293b;
        margin-bottom: 10px;
    }

    .privacy-updated {
        color: #64748b;
        font-size: 14px;
    }

    .privacy-content {
        line-height: 1.8;
        color: #334155;
    }

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

    .privacy-section h2 {
        font-size: 20px;
        font-weight: 600;
        color: #1e293b;
        margin-bottom: 15px;
        padding-bottom: 8px;
        border-bottom: 1px solid #e2e8f0;
    }

    .privacy-section h3 {
        font-size: 16px;
        font-weight: 600;
        color: #334155;
        margin-bottom: 10px;
        margin-top: 20px;
    }

    .privacy-section p {
        margin-bottom: 15px;
    }

    .privacy-section ul {
        margin-left: 20px;
        margin-bottom: 15px;
    }

    .privacy-section li {
        margin-bottom: 8px;
    }

    .highlight-box {
        background: #f1f5f9;
        border: 1px solid #cbd5e1;
        border-radius: 8px;
        padding: 20px;
        margin: 20px 0;
    }

    .rights-box {
        background: #667eea;
        color: white;
        padding: 20px;
        border-radius: 8px;
        margin: 30px 0;
    }

    .contact-info {
        background: #10b981;
        color: white;
        padding: 20px;
        border-radius: 8px;
        margin: 30px 0;
    }

    .back-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: #667eea;
        text-decoration: none;
        font-weight: 500;
        margin-bottom: 20px;
        transition: color 0.3s ease;
    }

    .back-link:hover {
        color: #4f46e5;
    }

    /* Simple header for privacy page */
    .simple-header {
        background: white;
        border-bottom: 1px solid #e2e8f0;
        padding: 20px 0;
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 100;
    }

    .header-content {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
        color: #1e293b;
        font-weight: 700;
        font-size: 20px;
    }

    .logo-icon {
        font-size: 24px;
    }

    .nav-links {
        display: flex;
        gap: 24px;
    }

    .nav-link {
        color: #64748b;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s;
    }

    .nav-link:hover {
        color: #667eea;
    }