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

        body {
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
            font-size: 15px;
            line-height: 1.6;
            color: #5A5A5A;
            background-color: #ffffff;
            font-weight: 200;
        }

        header {
            background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.05) 100%);
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            padding: 20px 0;
        }

        .container {
            max-width: 980px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .logo {
            font-size: 24px;
            font-weight: 400;
            color: #539009;
            text-decoration: none;
            display: inline-block;
        }

        nav {
            background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.05) 100%);
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            margin-top: 10px;
        }

        nav ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            padding: 0;
        }

        nav ul li {
            margin: 0 2px;
        }

        nav ul li a {
            display: block;
            padding: 15px 18px;
            color: #392e1c;
            text-decoration: none;
            font-size: 13px;
            font-weight: 400;
            transition: all 0.15s ease-out;
            border-top: 1px solid transparent;
        }

        nav ul li a:hover {
            color: #539009;
            border-top: 1px solid #539009;
        }

        .hero {
            background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%), #539009;
            color: #fff;
            padding: 80px 20px;
            text-align: center;
            margin-bottom: 40px;
        }

        h1 {
            font-size: 42px;
            font-weight: 400;
            margin-bottom: 20px;
            line-height: 1.3;
            color: #fff;
        }

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

        article h2 {
            font-size: 28px;
            font-weight: 400;
            color: #5A5A5A;
            margin: 30px 0 15px;
            line-height: 1.5;
        }

        article h3 {
            font-size: 21px;
            font-weight: 400;
            color: #5A5A5A;
            margin: 25px 0 12px;
            line-height: 1.5;
        }

        article h4 {
            font-size: 18px;
            font-weight: 400;
            color: #5A5A5A;
            margin: 20px 0 10px;
            line-height: 1.5;
        }

        article p {
            margin-bottom: 20px;
            font-size: 15px;
            font-weight: 200;
            line-height: 1.6;
        }

        .transition-section {
            max-width: 980px;
            margin: 40px auto;
            padding: 0 20px;
        }

        .transition-section p {
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 20px;
            color: #5A5A5A;
        }

        .links-section {
            background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.05) 100%);
            padding: 50px 20px;
            margin-top: 50px;
        }

        .links-section h2 {
            font-size: 28px;
            font-weight: 400;
            color: #5A5A5A;
            text-align: center;
            margin-bottom: 40px;
        }

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

        .links-container h3 {
            font-size: 21px;
            font-weight: 400;
            color: #539009;
            margin: 30px 0 15px;
            padding-left: 20px;
            position: relative;
        }

        .links-container h3:before {
            content: "";
            position: absolute;
            left: 0;
            top: 8px;
            width: 8px;
            height: 8px;
            background: #539009;
            border-radius: 50%;
        }

        .links-container ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px 30px;
            margin-bottom: 30px;
        }

        .links-container ul li {
            padding: 0;
        }

        .links-container ul li a {
            color: #4B6828;
            text-decoration: none;
            font-size: 14px;
            line-height: 1.6;
            transition: color 0.15s ease-out;
            display: inline-block;
            padding: 5px 0;
        }

        .links-container ul li a:hover {
            color: #539009;
        }

        footer {
            background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.05) 100%);
            padding: 40px 20px 20px;
            margin-top: 60px;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
        }

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

        .footer-content p {
            font-size: 13px;
            color: #787878;
            margin-bottom: 10px;
        }

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

            article h2 {
                font-size: 24px;
            }

            article h3 {
                font-size: 20px;
            }

            nav ul {
                flex-direction: column;
                align-items: center;
            }

            nav ul li {
                width: 100%;
                text-align: center;
            }

            nav ul li a {
                border-top: 0;
                border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            }

            .links-container ul {
                grid-template-columns: 1fr;
                gap: 5px;
            }

            .hero {
                padding: 60px 20px;
            }
        }

        @media screen and (max-width: 480px) {
            h1 {
                font-size: 26px;
            }

            article h2 {
                font-size: 22px;
            }

            article h3 {
                font-size: 18px;
            }

            .hero {
                padding: 40px 20px;
            }
        }
    