body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            padding: 40px 0;
        }
        .policy-container {
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
            max-width: 900px;
            margin: 0 auto;
            padding: 50px;
        }
        h1 {
            color: #667eea;
            font-weight: 700;
            margin-bottom: 10px;
        }
        .effective-date {
            color: #6c757d;
            font-size: 0.95rem;
            margin-bottom: 30px;
        }
        h2 {
            color: #2d3748;
            font-size: 1.5rem;
            font-weight: 600;
            margin-top: 35px;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e2e8f0;
        }
        p, li {
            color: #4a5568;
            line-height: 1.7;
            margin-bottom: 15px;
        }
        ul {
            padding-left: 20px;
        }
        .contact-box {
            background: #f7fafc;
            border-left: 4px solid #667eea;
            padding: 20px;
            margin-top: 20px;
            border-radius: 6px;
        }
        .contact-box strong {
            color: #2d3748;
        }
        footer {
            text-align: center;
            color: white;
            margin-top: 40px;
            padding: 20px;
        }
        footer a {
            color: white;
            text-decoration: none;
            margin-left: 15px;
        }
        footer a:hover {
            text-decoration: underline;
        }

/* === terms.html extra === */
body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: #f8f9fa;
            color: #212529;
        }
        .header-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 3rem 0;
            margin-bottom: 2rem;
        }
        .content-section {
            background: white;
            border-radius: 8px;
            padding: 2rem;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            margin-bottom: 2rem;
        }
        .content-section h2 {
            color: #667eea;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e9ecef;
        }
        footer {
            background-color: #212529;
            color: white;
            padding: 2rem 0;
            margin-top: 3rem;
        }
        footer a {
            color: #667eea;
            text-decoration: none;
        }
        footer a:hover {
            color: #764ba2;
            text-decoration: underline;
        }
        .effective-date {
            background-color: #e7f3ff;
            border-left: 4px solid #667eea;
            padding: 1rem;
            margin-bottom: 1.5rem;
            border-radius: 4px;
        }