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

        html {
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
            box-sizing: border-box;
        }

        *, *:before, *:after {
            -webkit-box-sizing: inherit;
            -moz-box-sizing: inherit;
            box-sizing: inherit;
        }

        body {
            font-family: 'Merriweather', Georgia, serif;
            background: #FFF;
            color: #4b4b4b;
            font-size: 16px;
            line-height: 1.8;
            padding-top: 85px;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 99;
            background: #5b7f8b;
            height: 85px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .header-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo {
            background: #fff;
            padding: 10px 30px;
            text-align: center;
        }

        .logo a {
            font-family: 'Oswald', sans-serif;
            font-size: 1.5em;
            font-weight: 700;
            color: #5b7f8b;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        main {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }

        h1 {
            font-family: 'Oswald', sans-serif;
            font-size: 2.5em;
            font-weight: 300;
            text-transform: uppercase;
            color: #5b7f8b;
            text-align: center;
            padding: 40px 20px 30px;
            margin: 0;
            border-bottom: 1px solid #85944d;
            line-height: 1.2;
        }

        article {
            padding: 40px 20px;
            max-width: 900px;
            margin: 0 auto;
        }

        article h2 {
            font-family: 'Oswald', sans-serif;
            font-size: 1.8em;
            font-weight: 300;
            text-transform: uppercase;
            color: #4b4b4b;
            margin: 1.5em 0 0.5em;
            line-height: 1.2;
        }

        article h3 {
            font-family: 'Oswald', sans-serif;
            font-size: 1.4em;
            font-weight: 400;
            text-transform: uppercase;
            color: #4b4b4b;
            margin: 1.2em 0 0.5em;
            line-height: 1.2;
        }

        article h4 {
            font-family: 'Oswald', sans-serif;
            font-size: 1.2em;
            font-weight: 400;
            color: #4b4b4b;
            margin: 1em 0 0.5em;
            line-height: 1.2;
        }

        article p {
            margin: 0 0 1.5em;
            line-height: 2;
            color: #4b4b4b;
        }

        article ul,
        article ol {
            padding-left: 2em;
            margin: 1em 0;
        }

        article li {
            margin: 0.5em 0;
            line-height: 2;
        }

        article a {
            color: #5b7f8b;
            text-decoration: none;
        }

        article a:hover {
            text-decoration: underline;
        }

        .transition-section {
            background: #f8f6f1;
            padding: 40px 20px;
            margin: 40px 0;
        }

        .transition-section p {
            max-width: 900px;
            margin: 0 auto 1.5em;
            line-height: 2;
            color: #4b4b4b;
        }

        .links-section {
            background: #f8f6f1;
            padding: 60px 20px;
            margin: 40px 0 0;
        }

        .links-container {
            max-width: 1280px;
            margin: 0 auto;
        }

        .links-section h2 {
            font-family: 'Oswald', sans-serif;
            font-size: 2em;
            font-weight: 300;
            text-transform: uppercase;
            color: #5b7f8b;
            text-align: center;
            margin-bottom: 40px;
            line-height: 1.2;
        }

        .links-section h3 {
            font-family: 'Oswald', sans-serif;
            font-size: 1.5em;
            font-weight: 400;
            text-transform: uppercase;
            color: #4b4b4b;
            margin: 30px 0 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #85944d;
            line-height: 1.2;
        }

        .links-section ul {
            list-style: none;
            padding: 0;
            margin: 0 0 30px;
            display: grid;
            grid-template-columns: 1fr;
            gap: 10px;
        }

        .links-section li {
            margin: 0;
        }

        .links-section a {
            display: block;
            padding: 12px 15px;
            color: #4b4b4b;
            text-decoration: none;
            background: #fff;
            border-left: 3px solid #a6b960;
            transition: all 0.3s ease;
        }

        .links-section a:hover {
            background: #fff;
            border-left-color: #5b7f8b;
            padding-left: 20px;
            text-decoration: none;
        }

        footer {
            background: #fff;
            border-top: 1px solid #85944d;
            padding: 40px 20px;
            margin-top: 60px;
        }

        .footer-container {
            max-width: 1280px;
            margin: 0 auto;
            text-align: center;
        }

        .footer-container p {
            color: #4b4b4b;
            font-size: 0.9em;
            line-height: 1.8;
            margin: 10px 0;
        }

        .footer-container a {
            color: #5b7f8b;
            text-decoration: none;
        }

        .footer-container a:hover {
            text-decoration: underline;
        }

        @media only screen and (min-width: 768px) {
            body {
                font-size: 18px;
            }

            h1 {
                font-size: 3em;
                padding: 50px 20px 40px;
            }

            article {
                padding: 60px 40px;
            }

            article h2 {
                font-size: 2em;
            }

            article h3 {
                font-size: 1.6em;
            }

            .links-section ul {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            .transition-section {
                padding: 60px 40px;
            }

            .links-section {
                padding: 80px 40px;
            }
        }

        @media only screen and (min-width: 1024px) {
            h1 {
                font-size: 3.5em;
            }

            article h2 {
                font-size: 2.2em;
            }

            .links-section h3 {
                font-size: 1.8em;
            }

            .links-section ul {
                gap: 20px;
            }
        }
    