        body {
            font-family: 'Segoe UI', sans-serif;
            background: #f9f9fb;
            color: #1a1a2e;
            line-height: 1.8;
        }

        header {
            background: #fff;
            padding: 20px 40px;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        header h1 {
            font-size: 22px;
            font-weight: 700;
            color: #6c3fc5;
        }

        .container {
            max-width: 800px;
            margin: 60px auto;
            background: #fff;
            border-radius: 16px;
            padding: 50px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
        }

        .page-title {
            font-size: 32px;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 8px;
        }

        .last-updated {
            font-size: 14px;
            color: #888;
            margin-bottom: 40px;
        }

        .section {
            margin-bottom: 36px;
        }

        .section h2 {
            font-size: 18px;
            font-weight: 700;
            color: #6c3fc5;
            margin-bottom: 12px;
            padding-bottom: 8px;
            border-bottom: 2px solid #f0eaff;
        }

        .section p {
            font-size: 15px;
            color: #444;
            margin-bottom: 10px;
        }

        .highlight-box {
            background: #fef3f3;
            border-left: 4px solid #e53e3e;
            border-radius: 8px;
            padding: 16px 20px;
            margin: 20px 0;
        }

        .highlight-box p {
            color: #c53030;
            font-weight: 600;
            margin: 0;
        }

        .info-box {
            background: #f0eaff;
            border-left: 4px solid #6c3fc5;
            border-radius: 8px;
            padding: 16px 20px;
            margin: 20px 0;
        }

        .info-box p {
            color: #4a2d8a;
            margin: 0;
        }

        ul {
            padding-left: 20px;
            margin-top: 8px;
        }

        ul li {
            font-size: 15px;
            color: #444;
            margin-bottom: 8px;
        }

        .contact-box {
            background: #f9f5ff;
            border-radius: 12px;
            padding: 24px;
            text-align: center;
            margin-top: 40px;
        }

        .contact-box p {
            color: #555;
            margin-bottom: 8px;
        }

        .contact-box a {
            color: #6c3fc5;
            font-weight: 600;
            text-decoration: none;
        }

        footer {
            text-align: center;
            padding: 30px;
            color: #aaa;
            font-size: 13px;
        }