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

        :root {
            --primary-color: #2d5016;
            --secondary-color: #4a7c2c;
            --text-color: #333;
            --light-gray: #f5f5f5;
            --border-color: #ddd;
            --white: #ffffff;
        }

        body {
            font-family: 'Raleway', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--white);
        }

        header {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

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

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

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

        nav a:hover {
            color: var(--secondary-color);
        }

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

        nav a:hover::after {
            width: 100%;
        }

        .hero {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: var(--white);
            padding: 4rem 2rem;
            text-align: center;
        }

        .hero h1 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 3rem 2rem;
        }

        article {
            background-color: var(--white);
            padding: 2rem 0;
        }

        article h2 {
            color: var(--primary-color);
            margin: 2rem 0 1rem;
            font-size: 2rem;
            border-bottom: 3px solid var(--secondary-color);
            padding-bottom: 0.5rem;
        }

        article h3 {
            color: var(--secondary-color);
            margin: 1.5rem 0 1rem;
            font-size: 1.5rem;
        }

        article p {
            margin-bottom: 1.5rem;
            line-height: 1.8;
            text-align: justify;
        }

        .transition-section {
            background-color: var(--light-gray);
            padding: 2rem;
            margin: 3rem 0;
            border-left: 4px solid var(--secondary-color);
            border-radius: 4px;
        }

        .transition-section p {
            margin-bottom: 1rem;
            line-height: 1.8;
        }

        .links-section {
            background-color: var(--white);
            padding: 3rem 2rem;
            margin-top: 3rem;
            border-top: 2px solid var(--border-color);
        }

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

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

        .links-section li {
            padding: 0.5rem 0;
        }

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

        .links-section a::before {
            content: '→';
            position: absolute;
            left: 0;
            transition: transform 0.3s ease;
        }

        .links-section a:hover {
            color: var(--primary-color);
            padding-left: 2rem;
        }

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

        footer {
            background-color: var(--primary-color);
            color: var(--white);
            padding: 2rem;
            margin-top: 4rem;
        }

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

        .footer-nav {
            margin-bottom: 1.5rem;
        }

        .footer-nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .footer-nav a {
            color: var(--white);
            text-decoration: none;
            transition: opacity 0.3s ease;
        }

        .footer-nav a:hover {
            opacity: 0.8;
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 1.75rem;
            }

            nav ul {
                gap: 1rem;
                justify-content: center;
            }

            .header-content {
                justify-content: center;
                text-align: center;
            }

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

            article h2 {
                font-size: 1.5rem;
            }

            article h3 {
                font-size: 1.25rem;
            }

            .container {
                padding: 2rem 1rem;
            }

            .footer-nav ul {
                flex-direction: column;
                gap: 1rem;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.5rem;
                letter-spacing: 1px;
            }

            .hero {
                padding: 2rem 1rem;
            }

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