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

        :root {
            --primary-green: #6cb33f;
            --dark-green: #4a9a2f;
            --text-dark: #333;
            --text-light: #666;
            --bg-light: #f8f9fa;
            --border-color: #e0e0e0;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: #fff;
        }

        header {
            background-color: #fff;
            border-bottom: 3px solid var(--primary-green);
            padding: 1.5rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        nav {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-green);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-green);
            transition: width 0.3s;
        }

        .nav-links a:hover {
            color: var(--primary-green);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        main {
            max-width: 1400px;
            margin: 0 auto;
            padding: 3rem 2rem;
        }

        h1 {
            font-size: 2.5rem;
            color: var(--text-dark);
            margin-bottom: 2rem;
            line-height: 1.2;
            border-left: 5px solid var(--primary-green);
            padding-left: 1.5rem;
        }

        article {
            background-color: #fff;
            padding: 2rem 0;
            margin-bottom: 3rem;
        }

        article p {
            margin-bottom: 1.5rem;
            color: var(--text-light);
            font-size: 1.1rem;
            line-height: 1.8;
        }

        article h2 {
            font-size: 2rem;
            color: var(--text-dark);
            margin-top: 2.5rem;
            margin-bottom: 1.5rem;
            border-bottom: 2px solid var(--bg-light);
            padding-bottom: 0.5rem;
        }

        article h3 {
            font-size: 1.5rem;
            color: var(--text-dark);
            margin-top: 2rem;
            margin-bottom: 1rem;
        }

        article h4 {
            font-size: 1.25rem;
            color: var(--text-dark);
            margin-top: 1.5rem;
            margin-bottom: 0.75rem;
        }

        .transition-section {
            background-color: var(--bg-light);
            padding: 3rem 2rem;
            margin: 3rem -2rem;
            border-left: 5px solid var(--primary-green);
        }

        .transition-section p {
            font-size: 1.1rem;
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .links-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            padding: 4rem 2rem;
            margin: 3rem -2rem 0;
            border-top: 3px solid var(--primary-green);
        }

        .links-section h3 {
            font-size: 1.75rem;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--primary-green);
        }

        .links-section ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem 2rem;
            margin-bottom: 3rem;
        }

        .links-section li {
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--border-color);
        }

        .links-section a {
            text-decoration: none;
            color: var(--text-dark);
            font-size: 1rem;
            transition: all 0.3s;
            display: inline-block;
            position: relative;
            padding-left: 1.5rem;
        }

        .links-section a::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--primary-green);
            transition: transform 0.3s;
        }

        .links-section a:hover {
            color: var(--primary-green);
            transform: translateX(5px);
        }

        .links-section a:hover::before {
            transform: translateX(5px);
        }

        footer {
            background-color: #2c2c2c;
            color: #fff;
            padding: 3rem 2rem 2rem;
            margin-top: 4rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-box {
            padding: 1.5rem;
            background-color: rgba(255, 255, 255, 0.05);
            border-left: 3px solid var(--primary-green);
        }

        .footer-box h4 {
            font-size: 1.25rem;
            margin-bottom: 1rem;
            color: var(--primary-green);
        }

        .footer-box p {
            font-size: 0.95rem;
            line-height: 1.6;
            color: #ccc;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #999;
            font-size: 0.9rem;
        }

        @media (max-width: 768px) {
            nav {
                flex-direction: column;
                gap: 1rem;
            }

            .nav-links {
                flex-direction: column;
                gap: 0.75rem;
                align-items: center;
            }

            h1 {
                font-size: 2rem;
                padding-left: 1rem;
            }

            main {
                padding: 2rem 1rem;
            }

            article h2 {
                font-size: 1.5rem;
            }

            .links-section ul {
                grid-template-columns: 1fr;
                gap: 0.5rem;
            }

            .transition-section,
            .links-section {
                margin-left: -1rem;
                margin-right: -1rem;
                padding: 2rem 1rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            .links-section ul {
                gap: 0.75rem 1.5rem;
            }
        }
    