        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
            background: #f9fbf5;
            color: #1e2a1e;
            line-height: 1.7;
            padding: 0 1rem 2rem;
        }
        a {
            color: #1f6e2b;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus-visible {
            color: #b75d0e;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #0f2b0f;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
        }
        h1 {
            font-size: 2.2rem;
            margin-top: 0.2rem;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 6px solid #1f6e2b;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.4rem;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            border-radius: 24px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
            padding: 1.5rem 2rem 2.5rem;
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 0 0.8rem;
            border-bottom: 2px solid #e8f0e3;
            position: relative;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #1f6e2b 0%, #f5a623 90%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            text-decoration: none;
        }
        .my-logo i {
            -webkit-text-fill-color: #f5a623;
            font-size: 1.8rem;
        }
        .my-logo:hover {
            opacity: 0.88;
            text-decoration: none;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 1.2rem;
            flex-wrap: wrap;
            padding: 0;
            margin: 0;
        }
        .nav-list li a {
            font-weight: 500;
            padding: 0.4rem 0.2rem;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s;
        }
        .nav-list li a:hover {
            border-bottom-color: #1f6e2b;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #1f6e2b;
            cursor: pointer;
            padding: 0.2rem 0.4rem;
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0.8rem 0 0.2rem;
            margin: 0 0 0.8rem;
            font-size: 0.9rem;
            color: #5a6b5a;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin: 0 0.6rem;
            color: #8aa08a;
        }
        .breadcrumb a {
            color: #1f6e2b;
        }
        .breadcrumb .current {
            color: #2c3e2c;
            font-weight: 500;
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
            max-width: 480px;
            margin: 1.2rem 0 1.8rem;
            flex-wrap: wrap;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 0.7rem 1rem;
            border: 2px solid #d4e0d0;
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.25s;
            background: #fafcfa;
        }
        .search-form input[type="text"]:focus {
            border-color: #1f6e2b;
        }
        .search-form button {
            background: #1f6e2b;
            color: #fff;
            border: none;
            border-radius: 40px;
            padding: 0.7rem 1.6rem;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .search-form button:hover {
            background: #155b1f;
            transform: scale(1.02);
        }
        .featured-img-wrap {
            margin: 1.5rem 0 2.2rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
        }
        .featured-img-wrap img {
            width: 100%;
            max-height: 460px;
            object-fit: cover;
        }
        .img-caption {
            font-size: 0.85rem;
            color: #5f735f;
            padding: 0.4rem 0.8rem 0.6rem;
            background: #f2f7ef;
        }
        .content-section {
            margin-bottom: 2.8rem;
        }
        .content-section p {
            text-align: justify;
        }
        .highlight-box {
            background: #f0f7ec;
            border-left: 6px solid #f5a623;
            padding: 1.2rem 1.6rem;
            border-radius: 0 16px 16px 0;
            margin: 1.6rem 0;
        }
        .highlight-box strong {
            color: #1f6e2b;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.2rem;
            margin: 1.6rem 0;
        }
        .stat-card {
            background: #f5f9f2;
            padding: 1.2rem 1rem;
            border-radius: 16px;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
        }
        .stat-card .num {
            font-size: 2.2rem;
            font-weight: 800;
            color: #1f6e2b;
        }
        .stat-card .label {
            font-size: 0.9rem;
            color: #3f553f;
        }
        .interview-block {
            background: #fcf9f0;
            border-radius: 20px;
            padding: 1.6rem 2rem;
            margin: 1.8rem 0;
            border: 1px solid #efe6d2;
        }
        .interview-block .quote {
            font-size: 1.1rem;
            font-style: italic;
            position: relative;
            padding-left: 1.6rem;
            border-left: 4px solid #f5a623;
        }
        .interview-block .attribution {
            margin-top: 0.8rem;
            font-weight: 600;
            color: #2c4a2c;
        }
        .tip-list {
            list-style: none;
            padding: 0;
        }
        .tip-list li {
            padding: 0.6rem 0 0.6rem 2rem;
            position: relative;
            border-bottom: 1px solid #ecf3e8;
        }
        .tip-list li::before {
            content: "⚡";
            position: absolute;
            left: 0;
            color: #f5a623;
        }
        .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.2rem;
            list-style: none;
            padding: 0.4rem 0;
        }
        .link-list-inline li a {
            background: #edf5e9;
            padding: 0.2rem 1rem 0.3rem;
            border-radius: 40px;
            font-size: 0.92rem;
            font-weight: 500;
        }
        .link-list-inline li a:hover {
            background: #dae8d3;
            text-decoration: none;
        }
        .feedback-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.8rem;
            margin: 2.4rem 0 1.2rem;
            padding: 1.8rem 0;
            border-top: 2px solid #e8f0e3;
            border-bottom: 2px solid #e8f0e3;
        }
        .feedback-card {
            background: #f7fbf5;
            padding: 1.4rem 1.6rem;
            border-radius: 20px;
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin-top: 0.6rem;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            padding: 0.6rem 1rem;
            border: 2px solid #dae3d5;
            border-radius: 12px;
            font-size: 0.95rem;
            font-family: inherit;
            background: #fff;
            transition: border-color 0.2s;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: #1f6e2b;
            outline: none;
        }
        .feedback-card textarea {
            min-height: 80px;
            resize: vertical;
        }
        .feedback-card .btn-submit {
            background: #1f6e2b;
            color: #fff;
            border: none;
            border-radius: 40px;
            padding: 0.65rem 1.4rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            align-self: flex-start;
        }
        .feedback-card .btn-submit:hover {
            background: #155b1f;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            gap: 0.2rem;
            justify-content: flex-end;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #d0dccb;
            cursor: pointer;
            transition: color 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5a623;
        }
        .site-footer {
            margin-top: 2.8rem;
            padding-top: 1.8rem;
            border-top: 2px solid #e8f0e3;
            font-size: 0.92rem;
        }
        .footer-flex {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 1.2rem 2rem;
        }
        friend-link {
            display: block;
            margin: 0.8rem 0 0.4rem;
        }
        friend-link a {
            display: inline-block;
            margin-right: 1.4rem;
            font-weight: 500;
            color: #1f6e2b;
        }
        friend-link a:hover {
            color: #b75d0e;
        }
        .copyright {
            margin-top: 1rem;
            color: #4f684f;
            font-size: 0.88rem;
            border-top: 1px solid #e0ebe0;
            padding-top: 1rem;
            text-align: center;
        }
        @media (max-width: 860px) {
            .container {
                padding: 1rem 1.2rem 1.8rem;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #ffffff;
                padding: 1rem 0.5rem 1.2rem;
                border-radius: 0 0 20px 20px;
                box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
                gap: 0.6rem;
                position: absolute;
                top: 100%;
                left: 0;
                z-index: 100;
            }
            .nav-list li a {
                display: block;
                padding: 0.5rem 1rem;
                border-bottom: none;
            }
            .hamburger {
                display: block;
            }
            #nav-toggle:checked+.hamburger+.nav-list {
                display: flex;
            }
            .site-header {
                flex-wrap: wrap;
                position: relative;
            }
            .feedback-section {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .stat-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .interview-block {
                padding: 1.2rem 1.2rem;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 0.4rem 1rem;
            }
            .container {
                padding: 0.8rem 0.8rem 1.4rem;
                border-radius: 16px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .search-form button span {
                display: none;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
                gap: 0.6rem;
            }
            .stat-card .num {
                font-size: 1.6rem;
            }
        }
        .last-updated {
            display: inline-block;
            background: #edf5e9;
            padding: 0.25rem 1.2rem 0.3rem;
            border-radius: 40px;
            font-size: 0.85rem;
            color: #2a4a2a;
            margin-bottom: 0.8rem;
        }
        .emoji-lg {
            font-size: 1.4em;
        }
        .text-highlight {
            background: linear-gradient(to right, #f5f9f0, #e8f3e0);
            padding: 0.1rem 0.4rem;
            border-radius: 6px;
            font-weight: 600;
        }
        hr {
            border: none;
            border-top: 2px dashed #dce8d6;
            margin: 2rem 0;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.4rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        table th {
            background: #1f6e2b;
            color: #fff;
            padding: 0.6rem 0.8rem;
            text-align: left;
        }
        table td {
            padding: 0.55rem 0.8rem;
            border-bottom: 1px solid #e4eee0;
        }
        table tr:nth-child(even) {
            background: #f8fbf6;
        }
