 * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: 'DM Sans', sans-serif;
            background: #FFFFFF;
            color: #111111;
            overflow-x: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            line-height: 1.5;
        }

        .top-bar {
            background-color: #333;
            color: white;
            width: 100%;
            padding: 10px 15px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 13px;
            gap: 60px;
            font-family: 'DM Sans', sans-serif;
            font-weight: 500;
        }
        .top-bar img {
            width: 20px; height: 20px;
            border-radius: 50%; object-fit: cover;
        }

        .mobile-wrapper {
            width: 100%;
            max-width: 680px;
            margin: 0 auto;
            background: #fff;
            padding: 30px 25px 60px;
        }

        h1 {
            font-family: 'Syne', sans-serif;
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 5px;
            line-height: 1.2;
        }

        .last-updated {
            font-size: 14px;
            color: #666;
            margin-bottom: 30px;
            font-weight: 400;
        }

        h2 {
            font-family: 'Syne', sans-serif;
            font-size: 20px;
            font-weight: 700;
            margin-top: 35px;
            margin-bottom: 12px;
            color: #000;
            line-height: 1.3;
        }

        p, li {
            font-family: 'DM Sans', sans-serif;
            font-size: 15px;
            font-weight: 400;
            color: #333;
            margin-bottom: 12px;
        }

        ul {
            padding-left: 20px;
            margin-bottom: 15px;
        }

        li {
            margin-bottom: 6px;
        }

        a {
            color: #C5A059;
            text-decoration: underline;
            font-weight: 500;
        }

        .info-box {
            background: #F9F9F9;
            border: 1px solid #EBEBEB;
            border-radius: 16px;
            padding: 20px;
            margin: 25px 0;
        }

        .info-box p {
            margin-bottom: 5px;
            font-size: 14px;
            display: flex;
            flex-wrap: wrap;
            gap: 0 8px;
        }

        .info-box strong {
            display: inline-block;
            min-width: 160px;
            font-weight: 600;
            color: #000;
        }

        .footer-note {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #EBEBEB;
            text-align: center;
            color: #888;
            font-size: 13px;
            font-weight: 400;
        }

        @media (max-width: 600px) {
            .mobile-wrapper { padding: 20px 15px 40px; }
            h1 { font-size: 26px; }
            .info-box strong { min-width: 120px; }
            .info-box p { flex-direction: column; gap: 2px; }
        }