* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Inter, Arial, sans-serif;
        }

        body {
            background: #f8fafc;
            color: #0f172a;
            line-height: 1.8;
        }

        header {
            background: #020617;
            padding: 20px 8%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .logo {
            font-size: 30px;
            font-weight: 700;
            color: #4ade80;
        }

        nav a {
            color: white;
            text-decoration: none;
            margin-left: 20px;
            transition: .3s;
        }

        nav a:hover {
            color: #4ade80;
        }

        .hero {

            background: linear-gradient(135deg, #2563eb, #22c55e);

            padding: 90px 20px;

            text-align: center;

            color: white;

        }

        .hero h1 {

            font-size: 54px;

            margin-bottom: 15px;

        }

        .hero p {

            font-size: 20px;

            opacity: .95;

        }

        .container {

            max-width: 1100px;

            margin: 60px auto;

            padding: 40px;

            background: white;

            border-radius: 25px;

            box-shadow: 0 20px 60px rgba(15, 23, 42, .08);

        }

        .notice {

            background: #eff6ff;

            border-left: 6px solid #2563eb;

            padding: 25px;

            border-radius: 18px;

            margin-bottom: 35px;

        }

        h2 {

            margin-top: 35px;

            margin-bottom: 12px;

            color: #2563eb;

        }

        p {

            color: #475569;

        }

        table {

            width: 100%;

            border-collapse: collapse;

            margin-top: 25px;

        }

        table th {

            background: #2563eb;

            color: white;

            padding: 15px;

            text-align: left;

        }

        table td {

            padding: 15px;

            border-bottom: 1px solid #e2e8f0;

            color: #475569;

        }

        .footer {

            margin-top: 80px;

            background: #020617;

            color: white;

            padding: 50px;

            text-align: center;

        }

        .footer a {

            color: #93c5fd;

            text-decoration: none;

            margin: 0 15px;

        }

        .footer p {

            margin-top: 20px;

            color: #94a3b8;

        }

        @media(max-width:768px) {

            header {

                flex-direction: column;

                gap: 15px;

            }

            .hero h1 {

                font-size: 38px;

            }

            .container {

                margin: 20px;

                padding: 25px;

            }

            table {

                display: block;

                overflow-x: auto;

            }

        }
