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

        body {
            font-family: 'Open Sans', Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #fff;
        }

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

        header {
            background: #fff;
            box-shadow: 0 3px 3px rgba(0, 0, 0, 0.05);
            padding: 20px 0;
        }

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

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #000;
        }

        nav ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }

        nav ul li a {
            text-decoration: none;
            color: #000;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color 0.3s;
        }

        nav ul li a:hover {
            color: #87B626;
        }

        .page-title {
            background: #87B626;
            color: #fff;
            padding: 40px 0;
            text-align: center;
        }

        .page-title h1 {
            font-size: 32px;
            font-weight: 700;
            margin: 0;
        }

        main {
            padding: 60px 0;
        }

        article {
            background: #fff;
            margin-bottom: 40px;
        }

        article h2,
        article h3,
        article h4 {
            margin: 30px 0 15px;
            color: #000;
            line-height: 1.3;
        }

        article h2 {
            font-size: 28px;
        }

        article h3 {
            font-size: 22px;
        }

        article h4 {
            font-size: 18px;
        }

        article p {
            margin-bottom: 20px;
            text-align: justify;
            line-height: 1.8;
        }

        .transition-section {
            margin: 40px 0;
        }

        .transition-section p {
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .links-section {
            background: #fafafa;
            border: 1px solid #e3e3e3;
            border-radius: 4px;
            padding: 40px 30px;
            margin-top: 40px;
        }

        .links-section h3 {
            font-size: 20px;
            color: #000;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .links-section ul {
            list-style: none;
            column-count: 2;
            column-gap: 30px;
            margin-bottom: 30px;
        }

        .links-section ul:last-child {
            margin-bottom: 0;
        }

        .links-section li {
            margin-bottom: 10px;
            break-inside: avoid;
        }

        .links-section li a {
            color: #000;
            text-decoration: none;
            transition: color 0.3s;
            display: inline-block;
            position: relative;
            padding-left: 15px;
        }

        .links-section li a:before {
            content: "›";
            position: absolute;
            left: 0;
            color: #87B626;
            font-weight: bold;
        }

        .links-section li a:hover {
            color: #87B626;
        }

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

        footer p {
            margin: 0;
        }

        footer a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
        }

        footer a:hover {
            color: #fff;
        }

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

            nav ul {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }

            .page-title h1 {
                font-size: 24px;
            }

            article h2 {
                font-size: 24px;
            }

            article h3 {
                font-size: 20px;
            }

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

            .links-section ul {
                column-count: 1;
            }

            main {
                padding: 40px 0;
            }
        }

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

            .page-title {
                padding: 30px 0;
            }

            .page-title h1 {
                font-size: 20px;
            }

            article h2 {
                font-size: 20px;
            }

            article h3 {
                font-size: 18px;
            }

            nav ul li a {
                font-size: 11px;
            }
        }
    