        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
            -webkit-text-size-adjust: 100%;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
            background: #f4f7f2;
            color: #1e2a1e;
            line-height: 1.7;
            padding: 0 16px;
        }
        a {
            color: #1e6f3f;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #b8860b;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        ul,
        ol {
            padding-left: 1.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.25;
            color: #1a3a1a;
            margin-top: 1.6rem;
            margin-bottom: 0.6rem;
        }
        h1 {
            font-size: 2.2rem;
            border-bottom: 4px solid #b8860b;
            display: inline-block;
            padding-bottom: 0.2rem;
        }
        h2 {
            font-size: 1.7rem;
            border-left: 6px solid #1e6f3f;
            padding-left: 0.8rem;
            margin-top: 2.4rem;
        }
        h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: #2a5a2a;
        }
        h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #3d6b3d;
        }
        p {
            margin-bottom: 1rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
            border-radius: 20px;
            padding: 20px 28px 32px;
            margin-top: 16px;
            margin-bottom: 40px;
        }
        @media (max-width: 600px) {
            .container {
                padding: 12px 14px 24px;
                border-radius: 12px;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            h3 {
                font-size: 1.1rem;
            }
            body {
                padding: 0 8px;
            }
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 8px 0 16px;
            border-bottom: 2px solid #e2e8e0;
            position: relative;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(145deg, #1e6f3f, #b8860b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 8px rgba(30, 111, 63, 0.15);
            display: inline-block;
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .logo-sub {
            font-size: 0.7rem;
            letter-spacing: 2px;
            color: #5a7a5a;
            display: block;
            font-weight: 400;
            -webkit-text-fill-color: #5a7a5a;
            background: none;
            text-shadow: none;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 6px 18px;
            flex-wrap: wrap;
            padding: 0;
        }
        .nav-list li a {
            font-weight: 500;
            padding: 4px 8px;
            border-radius: 6px;
            font-size: 0.95rem;
            transition: background 0.2s, color 0.2s;
        }
        .nav-list li a:hover {
            background: #eaf5ea;
            color: #1e6f3f;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #1e3a1e;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #eaf5ea;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #f9fbf8;
                padding: 16px 12px;
                border-radius: 14px;
                margin-top: 12px;
                box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
                border: 1px solid #e2e8e0;
            }
            .nav-list.show {
                display: flex;
            }
            .nav-list li a {
                padding: 10px 12px;
                display: block;
                font-size: 1rem;
                border-bottom: 1px solid #edf2ed;
            }
            .nav-list li:last-child a {
                border-bottom: none;
            }
            .nav-wrapper {
                flex-wrap: wrap;
            }
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 10px 0 6px;
            font-size: 0.85rem;
            color: #5a7a5a;
            gap: 4px 10px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #b8860b;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #1e6f3f;
        }
        .breadcrumb a:hover {
            color: #b8860b;
        }
        .search-block {
            background: #f0f5ee;
            border-radius: 40px;
            padding: 4px 4px 4px 20px;
            display: flex;
            align-items: center;
            max-width: 400px;
            border: 1px solid #d5e0d5;
            transition: box-shadow 0.3s;
            margin: 16px 0 8px;
        }
        .search-block:focus-within {
            box-shadow: 0 0 0 3px rgba(30, 111, 63, 0.2);
            border-color: #1e6f3f;
        }
        .search-block input {
            flex: 1;
            border: none;
            background: transparent;
            padding: 12px 8px 12px 0;
            font-size: 0.95rem;
            outline: none;
            color: #1e2a1e;
        }
        .search-block input::placeholder {
            color: #8aa08a;
            font-style: italic;
        }
        .search-block button {
            background: #1e6f3f;
            border: none;
            color: #fff;
            padding: 10px 22px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .search-block button:hover {
            background: #b8860b;
            transform: scale(1.02);
        }
        .search-block button i {
            font-size: 1rem;
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 20px;
            margin: 28px 0;
        }
        .feature-card {
            background: #f9fbf9;
            border-radius: 16px;
            padding: 22px 18px;
            border: 1px solid #e4ece4;
            transition: transform 0.2s, box-shadow 0.25s;
        }
        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
        }
        .feature-card i {
            color: #b8860b;
            font-size: 1.6rem;
            margin-bottom: 8px;
        }
        .feature-card h3 {
            margin-top: 0;
        }
        .data-table-wrap {
            overflow-x: auto;
            margin: 24px 0;
            border-radius: 12px;
            border: 1px solid #e2eae2;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
            min-width: 520px;
        }
        .data-table th {
            background: #1e3a1e;
            color: #f5faf5;
            padding: 12px 14px;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 10px 14px;
            border-bottom: 1px solid #e2eae2;
        }
        .data-table tr:nth-child(even) {
            background: #f8fbf8;
        }
        .data-table tr:hover {
            background: #edf5ed;
        }
        .highlight-box {
            background: #faf6eb;
            border-left: 6px solid #b8860b;
            padding: 18px 22px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
        .highlight-box strong {
            color: #1e6f3f;
        }
        .insight-quote {
            font-style: italic;
            background: #f0f7f0;
            padding: 18px 24px;
            border-radius: 16px;
            position: relative;
            margin: 24px 0;
        }
        .insight-quote::before {
            content: "\201C";
            font-size: 3.4rem;
            color: #b8860b;
            position: absolute;
            left: 12px;
            top: -6px;
            font-family: Georgia, serif;
        }
        .insight-quote p {
            margin-bottom: 0.2rem;
        }
        .insight-quote .attribution {
            font-style: normal;
            font-weight: 600;
            color: #1e6f3f;
            margin-top: 4px;
        }
        .friend-link {
            display: block;
            padding: 14px 0;
            margin-top: 8px;
        }
        .friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 4px 12px;
            background: #f0f5ee;
            border-radius: 30px;
            font-size: 0.9rem;
            transition: background 0.2s;
        }
        .friend-link a:hover {
            background: #dceade;
            text-decoration: none;
        }
        .interaction-area {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 36px 0 20px;
            padding-top: 20px;
            border-top: 2px solid #e2eae2;
        }
        @media (max-width: 700px) {
            .interaction-area {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }
        .comment-box,
        .rating-box {
            background: #f9fbf9;
            padding: 20px 22px;
            border-radius: 16px;
            border: 1px solid #e2eae2;
        }
        .comment-box h3,
        .rating-box h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .comment-box textarea {
            width: 100%;
            border: 1px solid #d5e0d5;
            border-radius: 10px;
            padding: 12px 14px;
            font-family: inherit;
            font-size: 0.95rem;
            resize: vertical;
            min-height: 80px;
            transition: border-color 0.2s;
            background: #fff;
        }
        .comment-box textarea:focus {
            border-color: #1e6f3f;
            outline: none;
            box-shadow: 0 0 0 3px rgba(30, 111, 63, 0.1);
        }
        .comment-box button,
        .rating-box button {
            background: #1e6f3f;
            color: #fff;
            border: none;
            padding: 10px 26px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            margin-top: 10px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .comment-box button:hover,
        .rating-box button:hover {
            background: #b8860b;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
            font-size: 1.8rem;
            margin: 8px 0 12px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #d4dcd4;
            transition: color 0.2s, transform 0.1s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #e6b800;
        }
        .star-rating label:hover {
            transform: scale(1.1);
        }
        .site-footer {
            margin-top: 32px;
            padding-top: 24px;
            border-top: 2px solid #e2eae2;
            font-size: 0.9rem;
            color: #4a6a4a;
        }
        .site-footer .copyright {
            text-align: center;
            padding: 18px 0 6px;
            font-size: 0.85rem;
            color: #6a8a6a;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #7a9a7a;
            display: flex;
            align-items: center;
            gap: 6px;
            margin: 6px 0 18px;
        }
        .tag {
            display: inline-block;
            background: #eaf5ea;
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 0.75rem;
            color: #1e5a1e;
            font-weight: 600;
        }
        .btn-top {
            position: fixed;
            bottom: 28px;
            right: 28px;
            background: #1e6f3f;
            color: #fff;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
            transition: background 0.25s, transform 0.2s;
            z-index: 99;
            border: none;
            cursor: pointer;
        }
        .btn-top:hover {
            background: #b8860b;
            transform: translateY(-4px);
        }
        @media (max-width: 600px) {
            .btn-top {
                bottom: 16px;
                right: 16px;
                width: 42px;
                height: 42px;
                font-size: 1.2rem;
            }
        }
        .schema-hidden {
            display: none;
        }
        .hero-img-wrap {
            border-radius: 14px;
            overflow: hidden;
            margin: 20px 0 24px;
            background: #edf2ed;
            position: relative;
        }
        .hero-img-wrap img {
            width: 100%;
            object-fit: cover;
            max-height: 380px;
        }
        .hero-img-caption {
            font-size: 0.8rem;
            color: #5a7a5a;
            padding: 6px 14px 10px;
            background: #f4f8f4;
        }
        .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 16px;
            list-style: none;
            padding: 0;
            margin: 14px 0;
        }
        .link-list-inline li a {
            background: #f0f5ee;
            padding: 4px 14px;
            border-radius: 30px;
            font-size: 0.85rem;
            display: inline-block;
            transition: background 0.2s;
        }
        .link-list-inline li a:hover {
            background: #dceade;
            text-decoration: none;
        }
