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

        html {
            overflow-x: hidden;
            max-width: 100%;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #676767;
            background-color: #f8f8f8;
            line-height: 1.7;
            font-size: 16px;
            max-width: 100%;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        header {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 30px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            font-size: 24px;
            font-weight: 700;
            color: #7bb829;
            text-decoration: none;
            letter-spacing: -0.5px;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 30px;
            align-items: center;
        }

        nav ul li a {
            text-decoration: none;
            color: #676767;
            font-size: 14px;
            font-weight: 600;
            transition: color 0.3s ease;
            position: relative;
        }

        nav ul li a:hover {
            color: #7bb829;
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #7bb829;
            transition: width 0.3s ease;
        }

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

        .hero-section {
            background: linear-gradient(135deg, rgba(123, 184, 41, 0.9), rgba(130, 181, 27, 0.9));
            color: #fff;
            padding: 80px 30px 60px;
            text-align: center;
        }

        .hero-content {
            max-width: 900px;
            margin: 0 auto;
        }

        h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
            color: #fff;
        }

        .content-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 30px;
        }

        article {
            background-color: #fff;
            padding: 50px;
            border-radius: 8px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
            margin-bottom: 50px;
        }

        article h2 {
            color: #333;
            font-size: 32px;
            margin-top: 40px;
            margin-bottom: 20px;
            font-weight: 700;
            line-height: 1.3;
        }

        article h2:first-child {
            margin-top: 0;
        }

        article h3 {
            color: #444;
            font-size: 24px;
            margin-top: 30px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        article h4 {
            color: #555;
            font-size: 20px;
            margin-top: 25px;
            margin-bottom: 12px;
            font-weight: 600;
        }

        article p {
            margin-bottom: 20px;
            color: #676767;
            font-size: 16px;
            line-height: 1.8;
        }

        article ul, article ol {
            margin-bottom: 20px;
            padding-left: 30px;
        }

        article ul li, article ol li {
            margin-bottom: 10px;
            color: #676767;
            line-height: 1.7;
        }

        article ul {
            list-style-type: disc;
        }

        article ol {
            list-style-type: decimal;
        }

        .transition-section {
            background-color: #fff;
            padding: 40px 50px;
            border-radius: 8px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
            margin-bottom: 50px;
        }

        .transition-section p {
            color: #676767;
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .links-section {
            background-color: #fff;
            padding: 50px;
            border-radius: 8px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
        }

        .links-section h2 {
            color: #333;
            font-size: 32px;
            margin-bottom: 30px;
            font-weight: 700;
            text-align: center;
        }

        .links-section h3 {
            color: #7bb829;
            font-size: 22px;
            margin-top: 35px;
            margin-bottom: 18px;
            font-weight: 600;
            border-bottom: 2px solid #7bb829;
            padding-bottom: 10px;
        }

        .links-section h3:first-of-type {
            margin-top: 0;
        }

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

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

        .links-section ul li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: #7bb829;
            font-weight: 700;
        }

        .links-section ul li a {
            color: #676767;
            text-decoration: none;
            transition: color 0.3s ease, padding-left 0.3s ease;
            display: inline-block;
            font-size: 15px;
            line-height: 1.6;
        }

        .links-section ul li a:hover {
            color: #7bb829;
            padding-left: 5px;
        }

        footer {
            background-color: #2c2c2c;
            color: #ccc;
            padding: 40px 30px;
            margin-top: 60px;
        }

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

        .footer-content p {
            font-size: 14px;
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                gap: 20px;
                padding: 15px 20px;
            }

            nav ul {
                flex-direction: column;
                gap: 15px;
            }

            h1 {
                font-size: 32px;
            }

            .hero-section {
                padding: 50px 20px 40px;
            }

            .content-wrapper {
                padding: 40px 20px;
            }

            article {
                padding: 30px 25px;
            }

            article h2 {
                font-size: 26px;
            }

            article h3 {
                font-size: 20px;
            }

            .transition-section {
                padding: 30px 25px;
            }

            .links-section {
                padding: 30px 25px;
            }

            .links-section h2 {
                font-size: 26px;
            }

            .links-section h3 {
                font-size: 19px;
            }

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

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

            article {
                padding: 20px 15px;
            }

            .links-section {
                padding: 20px 15px;
            }

            .transition-section {
                padding: 20px 15px;
            }
        }
    