
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Playfair+Display:wght@700&display=swap');
        
        :root {
            --color-canvas: #fdfcfb;
            --color-accent: #be123c;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--color-canvas);
            color: #1a202c;
        }

        h1, h2, h3 {
            font-family: 'Playfair Display', serif;
        }

        .btn-primary {
            background-color: var(--color-accent);
            transition: all 0.2s ease;
        }

        .btn-primary:hover {
            background-color: #9f1131;
            transform: translateY(-2px);
        }

        .privacy-card {
            border-bottom: 1px solid #e5e7eb;
            padding-bottom: 2rem;
            margin-bottom: 2rem;
        }
        .privacy-card:last-child {
            border-bottom: none;
        }
    