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

        html {
            font-size: 62.5%;
            -moz-osx-font-smoothing: grayscale;
            -webkit-font-smoothing: antialiased;
        }

        body {
            font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            font-size: 16px;
            font-size: 1.6rem;
            line-height: 1.625;
            color: #777;
            background-color: #F5F5F5;
        }

        a {
            color: #FF6C3A;
            text-decoration: none;
            transition: all 0.1s ease-in-out;
        }

        a:hover {
            color: #2F4052;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: "PT Sans Narrow", sans-serif;
            font-weight: 600;
            line-height: 1.2;
            color: #363F48;
            margin-bottom: 20px;
        }

        h1 {
            font-size: 36px;
            font-size: 3.6rem;
            margin-top: 0;
        }

        h2 {
            font-size: 30px;
            font-size: 3rem;
        }

        h3 {
            font-size: 24px;
            font-size: 2.4rem;
        }

        p {
            margin: 0 0 30px;
        }

        .site-container {
            max-width: 100%;
            margin: 0 auto;
        }

        .site-header {
            background-color: #FFF;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            padding: 20px 5%;
        }

        .site-title {
            font-family: "PT Sans Narrow", sans-serif;
            font-size: 40px;
            font-size: 4rem;
            line-height: 1.2;
            text-transform: uppercase;
            margin: 0;
        }

        .site-title a {
            color: #363F48;
            font-weight: 600;
        }

        .site-title a:hover {
            color: #363F48;
        }

        .site-inner {
            max-width: 1170px;
            margin: 0 auto;
            padding: 40px 5%;
        }

        .content-area {
            background: #FFF;
            padding: 50px;
            margin-bottom: 40px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            border-radius: 2px;
        }

        article h1 {
            font-size: 30px;
            font-size: 3rem;
            margin-bottom: 30px;
        }

        article h2 {
            font-size: 26px;
            font-size: 2.6rem;
            margin-top: 40px;
            margin-bottom: 20px;
        }

        article h3 {
            font-size: 22px;
            font-size: 2.2rem;
            margin-top: 30px;
        }

        article p {
            margin-bottom: 25px;
        }

        article ul, article ol {
            margin: 0 0 30px 40px;
        }

        article li {
            margin-bottom: 10px;
            list-style-type: disc;
        }

        .transition-section {
            background: #FFF;
            padding: 40px 50px;
            margin-bottom: 40px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            border-radius: 2px;
        }

        .links-section {
            background: #FFF;
            padding: 50px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            border-radius: 2px;
            margin-bottom: 40px;
        }

        .links-section h3 {
            color: #363F48;
            font-size: 24px;
            font-size: 2.4rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #FF6C3A;
        }

        .links-section ul {
            list-style: none;
            margin: 0 0 40px 0;
            padding: 0;
            column-count: 1;
            column-gap: 30px;
        }

        .links-section li {
            margin-bottom: 12px;
            padding-left: 20px;
            position: relative;
            break-inside: avoid;
        }

        .links-section li:before {
            content: "→";
            color: #FF6C3A;
            position: absolute;
            left: 0;
            font-weight: bold;
        }

        .links-section a {
            color: #777;
            display: inline-block;
            transition: all 0.2s ease-in-out;
        }

        .links-section a:hover {
            color: #FF6C3A;
            padding-left: 5px;
        }

        .site-footer {
            background-color: #191919;
            color: #FFF;
            text-align: center;
            padding: 25px 5%;
            font-size: 14px;
            font-size: 1.4rem;
        }

        .site-footer p {
            margin: 0;
        }

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

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

        @media only screen and (min-width: 768px) {
            .links-section ul {
                column-count: 2;
            }
        }

        @media only screen and (min-width: 860px) {
            h1 {
                font-size: 36px;
                font-size: 3.6rem;
            }

            .site-header {
                padding: 20px 0;
            }

            .site-title {
                max-width: 1170px;
                margin: 0 auto;
                padding: 0 15px;
            }

            .site-inner {
                padding: 60px 0;
            }

            article h1 {
                font-size: 36px;
                font-size: 3.6rem;
            }
        }

        @media only screen and (max-width: 767px) {
            .content-area,
            .transition-section,
            .links-section {
                padding: 30px 20px;
            }

            h1 {
                font-size: 28px;
                font-size: 2.8rem;
            }

            h2 {
                font-size: 24px;
                font-size: 2.4rem;
            }

            h3 {
                font-size: 20px;
                font-size: 2rem;
            }
        }
    