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

        body {
            font-family: Verdana, Tahoma, "DejaVu Sans", sans-serif;
            font-size: 0.875em;
            line-height: 1.6;
            color: #333;
            background-color: #fff;
        }

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

        header {
            background: linear-gradient(135deg, #92c582 0%, #7ab869 100%);
            border-bottom: 3px solid #6ba055;
            padding: 20px 0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo {
            width: 60px;
            height: 60px;
            background: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: #92c582;
            font-size: 1.5em;
        }

        .site-info h1 {
            color: #fff;
            font-size: 2.2em;
            font-family: Georgia, "Times New Roman", serif;
            margin-bottom: 5px;
        }

        .site-tagline {
            color: #e8f5e3;
            font-size: 1.1em;
            font-style: italic;
        }

        nav {
            background: rgba(255,255,255,0.1);
            border-radius: 8px;
            padding: 10px 0;
        }

        .nav-menu {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
        }

        .nav-menu > li {
            position: relative;
        }

        .nav-menu > li > a {
            color: #fff;
            text-decoration: none;
            padding: 10px 15px;
            border-radius: 6px;
            transition: all 0.3s ease;
            display: block;
            font-weight: 500;
        }

        .nav-menu > li > a:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }

        .nav-menu .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            min-width: 200px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .nav-menu li:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown a {
            color: #333;
            padding: 12px 20px;
            display: block;
            text-decoration: none;
            border-bottom: 1px solid #f0f0f0;
            transition: background 0.3s ease;
        }

        .dropdown a:hover {
            background: #f8f9fa;
            color: #92c582;
        }

        .dropdown a:last-child {
            border-bottom: none;
        }

        main {
            padding: 40px 0;
            min-height: 60vh;
        }

        h1 {
            font-size: 2.5em;
            color: #2c5234;
            margin-bottom: 30px;
            font-family: Georgia, "Times New Roman", serif;
            text-align: center;
            position: relative;
        }

        h1::after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, #92c582, #7ab869);
            margin: 15px auto 0;
            border-radius: 2px;
        }

        article {
            max-width: 800px;
            margin: 0 auto 50px;
            padding: 0 20px;
        }

        article p {
            margin-bottom: 1.5em;
            text-align: justify;
            color: #444;
        }

        article h2, article h3, article h4 {
            color: #2c5234;
            margin: 30px 0 15px;
            font-family: Georgia, "Times New Roman", serif;
        }

        article h2 {
            font-size: 1.8em;
            border-bottom: 2px solid #e8f5e3;
            padding-bottom: 10px;
        }

        article h3 {
            font-size: 1.5em;
        }

        article h4 {
            font-size: 1.3em;
        }

        .transition-section {
            background: linear-gradient(135deg, #f8fbf6 0%, #e8f5e3 100%);
            padding: 40px 0;
            margin: 50px 0;
        }

        .transition-section p {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
            font-size: 1.1em;
            color: #2c5234;
        }

        .links-section {
            background: #fff;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            padding: 50px 0;
            margin: 40px 0;
        }

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

        .links-section h3 {
            color: #2c5234;
            font-size: 1.6em;
            margin-bottom: 25px;
            font-family: Georgia, "Times New Roman", serif;
            border-left: 4px solid #92c582;
            padding-left: 20px;
        }

        .links-section ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 15px 30px;
            margin-bottom: 40px;
        }

        .links-section li {
            position: relative;
            padding-left: 20px;
        }

        .links-section li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: #92c582;
            font-weight: bold;
            transition: transform 0.3s ease;
        }

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

        .links-section a {
            color: #444;
            text-decoration: none;
            transition: color 0.3s ease;
            display: block;
            padding: 8px 0;
        }

        .links-section a:hover {
            color: #92c582;
        }

        footer {
            background: #2c5234;
            color: #fff;
            text-align: center;
            padding: 30px 0;
            margin-top: 60px;
        }

        footer p {
            margin: 0;
            opacity: 0.9;
        }

        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }

            .site-info h1 {
                font-size: 1.8em;
            }

            .site-tagline {
                font-size: 1em;
            }

            .nav-menu {
                flex-direction: column;
                gap: 10px;
            }

            .nav-menu .dropdown {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                background: rgba(255,255,255,0.1);
                border-radius: 6px;
                margin-top: 10px;
            }

            .dropdown a {
                color: #fff;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }

            .dropdown a:hover {
                background: rgba(255,255,255,0.1);
            }

            h1 {
                font-size: 2em;
            }

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

        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }

            .site-info h1 {
                font-size: 1.5em;
            }

            .site-tagline {
                font-size: 0.9em;
            }

            main {
                padding: 20px 0;
            }

            h1 {
                font-size: 1.7em;
            }

            .links-section {
                margin: 20px 0;
            }

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