
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            font-size: 14px;
        }

        body {
            font-family: "Alegreya", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            line-height: 1.6;
            color: #231f20;
            background: #e7f5f8;
            -webkit-font-smoothing: antialiased;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            background: #fff;
            box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2), 0 1px 3px 0 rgba(0, 0, 0, 0.1);
            padding: 1.5rem 0;
        }

        .header-logo {
            font-size: 2rem;
            font-weight: 800;
            color: #d0021b;
            text-transform: uppercase;
            text-decoration: none;
        }

        main {
            margin: 3rem auto;
        }

        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #d0021b;
            text-transform: uppercase;
            margin-bottom: 2rem;
            line-height: 1.2;
        }

        article {
            background: #fff;
            padding: 3rem;
            border-radius: 4px;
            box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2), 0 1px 3px 0 rgba(0, 0, 0, 0.1);
            margin-bottom: 3rem;
        }

        article h2 {
            font-size: 1.8rem;
            font-weight: 800;
            color: #4a4a4a;
            text-transform: uppercase;
            margin-top: 2rem;
            margin-bottom: 1rem;
        }

        article h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: #4a4a4a;
            text-transform: uppercase;
            margin-top: 1.5rem;
            margin-bottom: 0.8rem;
        }

        article h4 {
            font-size: 1.4rem;
            font-weight: 700;
            color: #999;
            text-transform: uppercase;
            margin-top: 1.2rem;
            margin-bottom: 0.6rem;
        }

        article p {
            font-size: 1.3rem;
            color: #4a4a4a;
            margin-bottom: 1.5rem;
            line-height: 1.6rem;
        }

        article ul,
        article ol {
            margin-bottom: 1.5rem;
            padding-left: 1.5rem;
        }

        article li {
            font-size: 1.3rem;
            color: #4a4a4a;
            line-height: 1.6rem;
            margin-bottom: 0.5rem;
        }

        article a {
            color: #d0021b;
            text-decoration: underline;
            font-weight: 700;
        }

        article a:hover {
            color: #231f20;
        }

        .transition-section {
            background: #fff;
            padding: 2rem 3rem;
            border-radius: 4px;
            box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2), 0 1px 3px 0 rgba(0, 0, 0, 0.1);
            margin-bottom: 3rem;
        }

        .transition-section p {
            font-size: 1.3rem;
            color: #4a4a4a;
            line-height: 1.6rem;
            margin-bottom: 1rem;
        }

        .links-section {
            background: #fff;
            padding: 3rem;
            border-radius: 4px;
            box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2), 0 1px 3px 0 rgba(0, 0, 0, 0.1);
            margin-bottom: 3rem;
        }

        .links-section h3 {
            font-size: 1.8rem;
            font-weight: 800;
            color: #4a4a4a;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            margin-top: 2rem;
        }

        .links-section h3:first-child {
            margin-top: 0;
        }

        .links-section ul {
            list-style: none;
            padding: 0;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.8rem;
            margin-bottom: 2rem;
        }

        .links-section li {
            margin: 0;
        }

        .links-section a {
            display: block;
            padding: 0.8rem 1rem;
            background: #e7f5f8;
            color: #4a4a4a;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 700;
            border-radius: 4px;
            transition: all 0.2s ease;
            border: 1px solid transparent;
        }

        .links-section a:hover {
            background: #dce7eb;
            color: #d0021b;
            border-color: #d0021b;
            transform: translateY(-2px);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        footer {
            background: #dce7eb;
            padding: 2rem 0;
            margin-top: 4rem;
            border-radius: 4px 4px 0 0;
        }

        .footer-content {
            text-align: center;
            font-size: 1rem;
            color: #999;
        }

        @media (max-width: 768px) {
            html {
                font-size: 13px;
            }

            article {
                padding: 2rem;
            }

            h1 {
                font-size: 2rem;
            }

            .transition-section {
                padding: 1.5rem 2rem;
            }

            .links-section {
                padding: 2rem;
            }

            .links-section ul {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            html {
                font-size: 12px;
            }

            .container {
                padding: 0 15px;
            }

            article {
                padding: 1.5rem;
            }

            h1 {
                font-size: 1.8rem;
            }

            .links-section {
                padding: 1.5rem;
            }
        }
    