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

        body {
            font-family: Georgia, 'Times New Roman', serif;
            font-size: 14px;
            line-height: 1.6;
            color: #666;
            background-color: #e6e6e6;
        }

        .site {
            max-width: 960px;
            margin: 48px auto;
            background-color: #fff;
            padding: 0 40px;
            box-shadow: 0 2px 6px rgba(100, 100, 100, 0.3);
        }

        .site-header {
            padding: 24px 0;
            text-align: center;
            border-bottom: 2px solid #425C69;
        }

        .site-header h1 {
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
            font-size: 26px;
            margin-bottom: 8px;
        }

        .site-header h1 a {
            color: #515151;
            text-decoration: none;
        }

        .site-header h1 a:hover {
            color: #21759b;
        }

        .site-header h2 {
            font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;
            font-size: 14px;
            font-weight: bold;
            font-style: italic;
            color: #777;
        }

        .main-navigation {
            margin: 24px 0;
            text-align: center;
            border-bottom: 2px solid #425C69;
        }

        .main-navigation ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .main-navigation li {
            display: inline-block;
            margin: 0 40px 0 0;
        }

        .main-navigation a {
            display: inline-block;
            color: #6a6a6a;
            text-decoration: none;
            text-transform: uppercase;
            padding: 12px 0;
            font-weight: bold;
        }

        .main-navigation a:hover {
            color: #21759b;
        }

        .site-content {
            padding: 40px 0;
        }

        h1 {
            font-size: 32px;
            line-height: 1.3;
            color: #425C69;
            margin-bottom: 24px;
            font-weight: bold;
        }

        article {
            margin-bottom: 48px;
        }

        article h2 {
            font-size: 24px;
            color: #425C69;
            margin: 24px 0 16px;
            font-weight: bold;
        }

        article h3 {
            font-size: 20px;
            color: #425C69;
            margin: 20px 0 14px;
        }

        article h4 {
            font-size: 18px;
            color: #425C69;
            margin: 18px 0 12px;
        }

        article p {
            margin: 0 0 15px;
            line-height: 1.6;
        }

        article a {
            color: #AF6A31;
            text-decoration: none;
            font-weight: bold;
        }

        article a:hover {
            color: #425C69;
            text-decoration: underline;
        }

        article ul,
        article ol {
            margin: 0 0 24px 24px;
        }

        article li {
            margin-bottom: 8px;
        }

        .transition-section {
            margin: 48px 0;
            padding: 24px 0;
            border-top: 1px solid #ededed;
        }

        .transition-section p {
            margin-bottom: 15px;
            line-height: 1.6;
        }

        .links-section {
            background-color: #f9f9f9;
            padding: 40px;
            margin: 48px -40px 0;
            border-top: 4px double #425C69;
        }

        .links-section h3 {
            font-size: 20px;
            color: #425C69;
            margin-bottom: 16px;
            font-weight: bold;
        }

        .links-section ul {
            list-style: none;
            columns: 2;
            column-gap: 40px;
            margin-bottom: 32px;
        }

        .links-section li {
            margin-bottom: 10px;
            break-inside: avoid;
        }

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

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

        .site-footer {
            border-top: 1px solid #ededed;
            padding: 24px 0;
            margin-top: 48px;
            text-align: center;
            font-size: 12px;
            color: #686868;
        }

        @media screen and (max-width: 960px) {
            body {
                background-color: #fff;
            }

            .site {
                margin: 0;
                box-shadow: none;
                padding: 0 24px;
            }

            .links-section {
                margin-left: -24px;
                margin-right: -24px;
                padding: 24px;
            }
        }

        @media screen and (max-width: 600px) {
            .site-header h1 {
                font-size: 22px;
            }

            .site-header h2 {
                font-size: 13px;
            }

            h1 {
                font-size: 24px;
            }

            article h2 {
                font-size: 20px;
            }

            article h3 {
                font-size: 18px;
            }

            .main-navigation li {
                display: block;
                margin: 0;
                border-bottom: 1px solid #ededed;
            }

            .main-navigation a {
                display: block;
                padding: 12px 0;
            }

            .links-section ul {
                columns: 1;
            }

            .links-section {
                padding: 20px;
            }
        }
    