body {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        min-height: 100vh;
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    }

    [data-bs-theme="dark"] body {
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    }

    .privacy-container {
        max-width: 900px;
        margin: 40px auto;
        padding: 20px;
    }

    .privacy-card {
        background: white;
        border-radius: 16px;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
        overflow: hidden;
    }

    [data-bs-theme="dark"] .privacy-card {
        background: #2a3042;
        border: 1px solid #32394e;
    }

    .privacy-header {
        background: #3A6FF7; /* Forge brand-blue */
        padding: 50px 40px;
        text-align: center;
        color: white;
    }

    .privacy-header h1 {
        font-size: 2.5rem;
        font-weight: 700;
        margin: 0 0 10px 0;
        color: white;
    }

    .privacy-header p {
        font-size: 1rem;
        opacity: 0.95;
        margin: 0;
        color: rgba(255, 255, 255, 0.9);
    }

    .privacy-content {
        padding: 50px 40px;
    }

    .privacy-content h2 {
        font-size: 1.75rem;
        font-weight: 600;
        color: #212529;
        margin: 40px 0 20px 0;
        padding-bottom: 12px;
        border-bottom: 3px solid #4C7DFF; /* Forge brand-blue */
    }

    [data-bs-theme="dark"] .privacy-content h2 {
        color: #e3e6ef;
    }

    .privacy-content h2:first-child {
        margin-top: 0;
    }

    .privacy-content h3 {
        font-size: 1.25rem;
        font-weight: 600;
        color: #495057;
        margin: 30px 0 15px 0;
    }

    [data-bs-theme="dark"] .privacy-content h3 {
        color: #adb5bd;
    }

    .privacy-content p {
        font-size: 1rem;
        line-height: 1.8;
        color: #495057;
        margin-bottom: 20px;
    }

    [data-bs-theme="dark"] .privacy-content p {
        color: #adb5bd;
    }

    .privacy-content ul {
        margin: 20px 0;
        padding-left: 30px;
    }

    .privacy-content ul li {
        font-size: 1rem;
        line-height: 1.8;
        color: #495057;
        margin-bottom: 12px;
    }

    [data-bs-theme="dark"] .privacy-content ul li {
        color: #adb5bd;
    }

    .privacy-content strong {
        color: #212529;
        font-weight: 600;
    }

    [data-bs-theme="dark"] .privacy-content strong {
        color: #e3e6ef;
    }

    .highlight-box {
        background: #fff3cd;
        border-left: 4px solid #ffc107;
        padding: 20px;
        margin: 30px 0;
        border-radius: 8px;
    }

    [data-bs-theme="dark"] .highlight-box {
        background: rgba(255, 193, 7, 0.1);
        border-left-color: #ffc107;
    }

    .highlight-box p {
        margin: 0;
        color: #856404;
    }

    [data-bs-theme="dark"] .highlight-box p {
        color: #ffc107;
    }

    .contact-section {
        background: #f8f9fa;
        padding: 30px;
        border-radius: 12px;
        margin: 40px 0 0 0;
    }

    [data-bs-theme="dark"] .contact-section {
        background: #1f2937;
    }

    .contact-section h3 {
        margin-top: 0;
    }

    .back-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 24px;
        background: #3A6FF7; /* Forge brand-blue */
        color: white;
        text-decoration: none;
        border-radius: 8px;
        font-weight: 500;
        transition: all 0.3s ease;
        margin-top: 30px;
    }

    .back-btn:hover {
        opacity: 0.9;
        color: white;
        transform: translateX(-4px);
    }

    .last-update {
        text-align: center;
        color: #6c757d;
        font-size: 0.875rem;
        margin-top: 40px;
        padding-top: 30px;
        border-top: 1px solid #dee2e6;
    }

    [data-bs-theme="dark"] .last-update {
        color: #6c757d;
        border-top-color: #32394e;
    }

    @media (max-width: 768px) {
        .privacy-header {
            padding: 30px 20px;
        }

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

        .privacy-content {
            padding: 30px 20px;
        }

        .privacy-content h2 {
            font-size: 1.5rem;
        }
    }
