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

        html, body {
            font-family: "Roboto Condensed", Roboto, "Source Sans Pro", sans-serif;
            background: #f5f8fa;
            color: #666;
            font-weight: 300;
            line-height: 1.6;
        }

        a {
            color: #404986;
            text-decoration: none;
        }

        a:hover {
            color: #404986;
            text-decoration: underline;
        }

        #nav-wrap {
            position: relative;
            background: #000;
            box-shadow: 0 3px 0 rgba(0, 0, 0, 0.1);
        }

        #nav-universal {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            height: 42px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .ff-nav {
            list-style: none;
            display: flex;
            align-items: center;
            gap: 20px;
            margin: 0;
            padding: 0;
        }

        .ff-nav li {
            list-style: none;
        }

        .ff-nav a {
            color: #888;
            font-size: 16px;
            text-decoration: none;
            transition: color 0.3s;
        }

        .ff-nav a:hover {
            color: #fff;
            text-decoration: none;
        }

        #wordmark {
            height: 25px;
            width: auto;
        }

        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
            background: #fff;
            min-height: calc(100vh - 300px);
        }

        h1 {
            font-size: 48px;
            font-weight: 700;
            line-height: 54px;
            color: #000;
            margin: 0 0 36px 0;
        }

        h2 {
            font-size: 42px;
            font-weight: 700;
            line-height: 48px;
            color: #000;
            margin: 36px 0 24px 0;
        }

        h3 {
            font-size: 24px;
            line-height: 30px;
            font-weight: 600;
            color: #000;
            margin: 24px 0 15px 0;
        }

        h4 {
            font-size: 20px;
            line-height: 26px;
            font-weight: 600;
            color: #000;
            margin: 20px 0 12px 0;
        }

        h5 {
            font-size: 18px;
            line-height: 24px;
            font-weight: 600;
            color: #000;
            margin: 18px 0 10px 0;
        }

        h6 {
            font-size: 16px;
            line-height: 22px;
            font-weight: 600;
            color: #000;
            margin: 16px 0 8px 0;
        }

        article p {
            font-size: 18px;
            line-height: 24px;
            color: #666;
            font-weight: 300;
            margin: 0 0 24px 0;
        }

        article {
            margin-bottom: 48px;
        }

        .transition-section {
            margin: 48px 0;
            padding: 36px 0;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
        }

        .transition-section p {
            font-size: 18px;
            line-height: 24px;
            color: #666;
            font-weight: 300;
            margin: 0 0 24px 0;
        }

        .links-section {
            background: #f5f8fa;
            padding: 48px 36px;
            margin: 48px -20px 0 -20px;
            border-radius: 2px;
        }

        .links-section h3 {
            font-size: 24px;
            line-height: 30px;
            font-weight: 600;
            color: #000;
            margin: 36px 0 15px 0;
        }

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

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

        .links-section li {
            font-size: 18px;
            line-height: 24px;
        }

        .links-section a {
            color: #404986;
            text-decoration: none;
            font-weight: 300;
        }

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

        footer {
            background: #f5f8fa;
            padding: 60px 20px;
            border-top: 1px solid #ddd;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 200px 1fr 1fr;
            gap: 40px;
            margin-bottom: 36px;
        }

        .footer-logo {
            width: 100%;
            max-width: 180px;
        }

        .footer-description {
            font-weight: 300;
            font-size: 18px;
            line-height: 24px;
            color: #666;
        }

        .footer-nav-wrapper {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .footer-nav {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-nav li {
            margin: 0 0 10px 0;
        }

        .footer-nav a {
            font-weight: 300;
            font-size: 18px;
            line-height: 24px;
            color: #999;
        }

        .footer-nav a:hover {
            color: #666;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid #ddd;
        }

        .footer-bottom p {
            font-size: 14px;
            line-height: 18px;
            color: #999;
        }

        .footer-bottom a {
            color: #999;
        }

        @media screen and (max-width: 768px) {
            .ff-nav {
                gap: 15px;
                flex-wrap: wrap;
            }

            .ff-nav a {
                font-size: 14px;
            }

            #nav-universal {
                height: auto;
                padding: 10px 20px;
                flex-direction: column;
                align-items: flex-start;
            }

            main {
                padding: 40px 20px;
            }

            h1 {
                font-size: 36px;
                line-height: 42px;
                margin: 0 0 24px 0;
            }

            h2 {
                font-size: 30px;
                line-height: 36px;
                margin: 24px 0 18px 0;
            }

            h3 {
                font-size: 22px;
                line-height: 28px;
            }

            .links-section {
                padding: 36px 24px;
                margin: 36px -20px 0 -20px;
            }

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

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .footer-logo {
                max-width: 150px;
                margin: 0 auto;
            }

            .footer-nav-wrapper {
                grid-template-columns: 1fr;
            }

            .footer-description {
                text-align: center;
            }
        }

        @media screen and (max-width: 480px) {
            h1 {
                font-size: 28px;
                line-height: 34px;
            }

            h2 {
                font-size: 24px;
                line-height: 30px;
            }

            article p, .transition-section p {
                font-size: 16px;
                line-height: 22px;
            }

            .links-section {
                padding: 24px 16px;
            }
        }
    