* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #f7f9fc;
            color: #1a1a2e;
            line-height: 1.75;
            scroll-behavior: smooth;
            padding: 0 16px;
        }
        .wrapper {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 0 40px rgba(0,0,0,0.04);
            border-radius: 32px 32px 0 0;
            overflow: hidden;
        }
        a {
            color: #1e7e34;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #146b2b;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 16px;
        }
        .container {
            padding: 0 24px;
        }
        @media (max-width: 640px) {
            .container {
                padding: 0 12px;
            }
            body {
                padding: 0 8px;
            }
        }
        .site-header {
            background: linear-gradient(135deg, #58cc02 0%, #46a302 100%);
            padding: 16px 24px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            border-radius: 0 0 24px 24px;
            position: relative;
            box-shadow: 0 4px 20px rgba(88,204,2,0.25);
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #ffffff;
            text-shadow: 0 2px 8px rgba(0,0,0,0.10);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            font-size: 2rem;
            color: #fff;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.92;
        }
        .my-logo small {
            font-weight: 400;
            font-size: 0.7rem;
            opacity: 0.85;
            display: block;
        }
        .nav-wrap {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .main-nav {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #fff;
            padding: 8px 16px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: background 0.2s, transform 0.15s;
            background: rgba(255,255,255,0.10);
        }
        .main-nav a:hover {
            background: rgba(255,255,255,0.28);
            transform: translateY(-1px);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: rgba(255,255,255,0.15);
            border: none;
            color: #fff;
            font-size: 1.6rem;
            padding: 8px 14px;
            border-radius: 40px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255,255,255,0.25);
        }
        @media (max-width: 820px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 12px;
                background: rgba(0,0,0,0.10);
                border-radius: 20px;
                padding: 12px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 12px 16px;
                border-radius: 12px;
            }
        }
        .breadcrumb {
            padding: 16px 24px 0 24px;
            font-size: 0.85rem;
            color: #5a6a7a;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb a {
            color: #1e7e34;
        }
        .breadcrumb span {
            color: #8a9aa8;
        }
        .content {
            padding: 24px 0 40px;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 0 0 16px 0;
            color: #1a1a2e;
            letter-spacing: -0.03em;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            margin: 48px 0 16px 0;
            color: #1a1a2e;
            border-bottom: 4px solid #58cc02;
            padding-bottom: 8px;
            display: inline-block;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin: 32px 0 12px 0;
            color: #2d3a4a;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            margin: 24px 0 8px 0;
            color: #3d4a5a;
        }
        p {
            margin: 0 0 18px 0;
            color: #2d3a4a;
        }
        .lead {
            font-size: 1.2rem;
            color: #3d4a5a;
            background: #f0f7ee;
            padding: 20px 24px;
            border-radius: 20px;
            border-left: 6px solid #58cc02;
            margin-bottom: 28px;
        }
        .emoji-big {
            font-size: 1.3em;
        }
        .stat-highlight {
            background: #eaf7e7;
            padding: 4px 12px;
            border-radius: 40px;
            font-weight: 700;
            color: #1e7e34;
        }
        .img-wrapper {
            margin: 28px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0,0,0,0.06);
        }
        .img-wrapper img {
            width: 100%;
        }
        .img-wrapper figcaption {
            padding: 12px 16px;
            background: #f4f8f2;
            font-size: 0.9rem;
            color: #4a5a6a;
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 20px;
            margin: 28px 0;
        }
        .feature-card {
            background: #f8faf8;
            padding: 24px 20px;
            border-radius: 20px;
            border: 1px solid #e8efe5;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(88,204,2,0.12);
        }
        .feature-card i {
            font-size: 2rem;
            color: #58cc02;
            margin-bottom: 12px;
        }
        .feature-card h4 {
            margin-top: 0;
        }
        blockquote {
            border-left: 6px solid #58cc02;
            background: #f4f9f2;
            padding: 20px 24px;
            margin: 28px 0;
            border-radius: 0 16px 16px 0;
            font-style: italic;
            color: #2d4a3a;
        }
        blockquote footer {
            margin-top: 12px;
            font-style: normal;
            font-weight: 600;
            color: #1a2a1a;
        }
        .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 20px 0;
        }
        .link-list-inline a {
            background: #f0f7ee;
            padding: 6px 16px;
            border-radius: 40px;
            font-size: 0.9rem;
            border: 1px solid #dce8d8;
            transition: background 0.2s;
        }
        .link-list-inline a:hover {
            background: #dce8d8;
        }
        .search-section {
            background: #f4f8f2;
            padding: 24px 28px;
            border-radius: 24px;
            margin: 40px 0 24px;
        }
        .search-section form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .search-section input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border: 2px solid #dce8d8;
            border-radius: 60px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.2s;
        }
        .search-section input[type="text"]:focus {
            border-color: #58cc02;
        }
        .search-section button {
            background: #58cc02;
            color: #fff;
            border: none;
            padding: 14px 32px;
            border-radius: 60px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .search-section button:hover {
            background: #46a302;
            transform: scale(1.02);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 40px 0;
        }
        @media (max-width: 720px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .feedback-card {
            background: #f8faf8;
            border-radius: 24px;
            padding: 24px 28px;
            border: 1px solid #e8efe5;
        }
        .feedback-card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .feedback-card textarea,
        .feedback-card input {
            padding: 12px 16px;
            border: 2px solid #dce8d8;
            border-radius: 16px;
            font-size: 0.95rem;
            font-family: inherit;
            outline: none;
            transition: border-color 0.2s;
            resize: vertical;
        }
        .feedback-card textarea:focus,
        .feedback-card input:focus {
            border-color: #58cc02;
        }
        .feedback-card button {
            background: #58cc02;
            color: #fff;
            border: none;
            padding: 12px 24px;
            border-radius: 60px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s;
            align-self: flex-start;
        }
        .feedback-card button:hover {
            background: #46a302;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            gap: 4px;
            justify-content: flex-end;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #ccc;
            cursor: pointer;
            transition: color 0.15s;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #f5b342;
        }
        .site-footer {
            background: #1a2a1a;
            color: #dae8da;
            padding: 40px 24px 24px;
            border-radius: 24px 24px 0 0;
            margin-top: 40px;
        }
        .site-footer a {
            color: #9bca8b;
        }
        .site-footer a:hover {
            color: #c5e8b5;
        }
        .footer-flex {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: space-between;
        }
        .footer-col {
            flex: 1 1 200px;
        }
        .footer-col h4 {
            color: #fff;
            margin: 0 0 12px 0;
        }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.04);
            padding: 20px 24px;
            border-radius: 16px;
            margin: 24px 0 16px;
            border: 1px solid rgba(255,255,255,0.06);
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
        }
        .copyright {
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid rgba(255,255,255,0.06);
            margin-top: 24px;
            font-size: 0.85rem;
            color: #8aaa8a;
        }
        .last-updated {
            background: #f0f7ee;
            display: inline-block;
            padding: 4px 16px;
            border-radius: 40px;
            font-size: 0.85rem;
            color: #1e7e34;
            margin-bottom: 20px;
        }
        @media (max-width: 640px) {
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .site-header {
                padding: 12px 16px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo i {
                font-size: 1.4rem;
            }
            .breadcrumb {
                padding: 12px 16px 0;
                font-size: 0.75rem;
            }
            .container {
                padding: 0 8px;
            }
            .search-section {
                padding: 16px 18px;
            }
            .feedback-card {
                padding: 18px 16px;
            }
        }
        .schema-hidden {
            display: none;
        }
        .mt-0 { margin-top: 0; }
        .mb-0 { margin-bottom: 0; }
        .text-center { text-align: center; }
        .gap-sm { gap: 8px; }
        .flex-wrap { display: flex; flex-wrap: wrap; align-items: center; }
