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

        html {
            font-size: 62.5%;
            overflow-y: scroll;
            -webkit-text-size-adjust: 100%;
            -ms-text-size-adjust: 100%;
        }

        body {
            background: #fff;
            color: #404040;
            font-family: helvetica, sans-serif, arial;
            font-size: 16px;
            font-size: 1.6rem;
            line-height: 1.7;
        }

        .site-header {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            padding: 4rem 5%;
            text-align: center;
            box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
        }

        h1 {
            color: #fff;
            font-size: 3em;
            line-height: 1.2;
            margin-bottom: 0.5em;
            text-transform: uppercase;
            text-shadow: 0 0 2px #000;
            letter-spacing: 1px;
        }

        h2 {
            font-size: 2em;
            margin-bottom: 0.75em;
            text-transform: uppercase;
            color: #2c3e50;
        }

        h3 {
            font-size: 1.5em;
            line-height: 1.2;
            margin-bottom: 1em;
            text-transform: uppercase;
            color: #34495e;
        }

        h4 {
            font-size: 1.2em;
            line-height: 1.25;
            margin-bottom: 1.25em;
        }

        h5 {
            font-size: 1em;
            font-weight: bold;
            margin-bottom: 1.5em;
        }

        h6 {
            font-size: 1em;
            font-weight: bold;
        }

        p {
            margin-bottom: 2em;
            overflow: hidden;
            text-align: justify;
        }

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

        article {
            background: #fff;
            padding: 5rem 5%;
            max-width: 1000px;
            margin: 0 auto;
        }

        article h2,
        article h3,
        article h4,
        article h5,
        article h6 {
            margin-top: 1.5em;
        }

        article ul,
        article ol {
            margin: 0 0 2em 3em;
        }

        article ul {
            list-style: disc;
        }

        article ol {
            list-style: decimal;
        }

        article li {
            margin-bottom: 0.5em;
        }

        .transition-section {
            background: #f8f9fa;
            padding: 4rem 5%;
            max-width: 1000px;
            margin: 0 auto;
            border-top: 2px solid #e0e0e0;
            border-bottom: 2px solid #e0e0e0;
        }

        .links-section {
            background: #2c3e50;
            padding: 5rem 5%;
            color: #fff;
        }

        .links-section h3 {
            color: #fff;
            margin-top: 2em;
            padding-bottom: 0.5em;
            border-bottom: 2px solid rgba(255, 255, 255, 0.3);
        }

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

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

        .links-section li {
            margin: 0;
        }

        .links-section a {
            color: #ecf0f1;
            text-decoration: none;
            display: block;
            padding: 0.5rem 0;
            transition: color 0.2s ease-in-out;
        }

        .links-section a:hover {
            color: #fff;
            text-decoration: underline;
        }

        a {
            color: #777;
            transition: color 0.2s ease-in-out;
        }

        a:hover,
        a:focus {
            color: #ccc;
        }

        strong,
        b {
            font-weight: bold;
        }

        em,
        i {
            font-style: italic;
        }

        blockquote {
            margin: 2em 0;
            padding: 1em 2em;
            background: #f8f9fa;
            border-left: 4px solid #2c3e50;
            font-style: italic;
        }

        code,
        pre {
            font-family: "Courier New", Courier, monospace;
            background: #eee;
        }

        code {
            padding: 0.2em 0.4em;
        }

        pre {
            padding: 1.6em;
            margin-bottom: 2em;
            overflow: auto;
            max-width: 100%;
        }

        .site-footer {
            background: #000;
            color: #777;
            text-align: center;
            padding: 2em 5%;
            font-size: 0.9em;
            margin-top: 4rem;
        }

        .site-footer a {
            color: #777;
        }

        .site-footer a:hover {
            color: #999;
        }

        @media screen and (max-width: 768px) {
            h1 {
                font-size: 2em;
            }

            h2 {
                font-size: 1.5em;
            }

            h3 {
                font-size: 1.3em;
            }

            article {
                padding: 3rem 5%;
            }

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

            p {
                text-align: left;
            }
        }

        @media screen and (max-width: 480px) {
            .site-header {
                padding: 3rem 5%;
            }

            h1 {
                font-size: 1.8em;
            }

            article {
                padding: 2rem 5%;
            }

            .transition-section {
                padding: 3rem 5%;
            }

            .links-section {
                padding: 3rem 5%;
            }
        }
    