:root {
            --bg: #ffffff;
            --text-main: #1d1d1f;
            --text-sub: #86868b;
            --accent: #4b5563;
            --line: #e5e5e7;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: -apple-system, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
            line-height: 1.6;
            color: var(--text-main);
            background-color: var(--bg);
        }

        .container {
            max-width: 700px;
            margin: 0 auto;
            padding: 60px 24px;
        }

        header {
            margin-bottom: 40px;
            border-bottom: 1px solid var(--line);
            padding-bottom: 20px;
        }

        h1 { font-size: 28px; font-weight: 700; margin-bottom: 10px; }
        .date { font-size: 14px; color: var(--text-sub); }

        section { margin-bottom: 30px; }
        h2 { font-size: 18px; font-weight: 600; margin-bottom: 12px; color: var(--accent); }
        p { margin: 0 0 15px 0; font-size: 15px; text-align: justify; }

        .highlight-box {
            background-color: #f5f5f7;
            border-left: 4px solid var(--accent);
            padding: 20px;
            border-radius: 8px;
            margin: 25px 0;
        }

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

        footer {
            margin-top: 60px;
            padding-top: 20px;
            border-top: 1px solid var(--line);
            text-align: center;
            font-size: 13px;
            color: var(--text-sub);
        }

        .back-btn {
            display: inline-block;
            margin-bottom: 30px;
            text-decoration: none;
            color: var(--accent);
            font-size: 14px;
            font-weight: 500;
        }
