* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #f5f7f2;
            color: #1e2a1e;
            line-height: 1.7;
            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: 28px;
            padding: 20px 24px 32px;
            margin-top: 16px;
            margin-bottom: 40px;
        }
        .header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0 8px;
            border-bottom: 2px solid #e8ede4;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #1f5e2e;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            color: #d4a11e;
            font-size: 2rem;
        }
        .my-logo span {
            background: linear-gradient(135deg, #1f5e2e, #3a8a4a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .nav-bar {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .nav-bar a {
            text-decoration: none;
            color: #1e2a1e;
            font-weight: 500;
            padding: 8px 14px;
            border-radius: 40px;
            font-size: 0.95rem;
            transition: all 0.2s;
        }
        .nav-bar a:hover {
            background: #1f5e2e;
            color: #fff;
        }
        .nav-bar a i {
            margin-right: 6px;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #1f5e2e;
            cursor: pointer;
            padding: 4px 8px;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            padding: 14px 0 6px;
            font-size: 0.9rem;
            color: #5a6a5a;
            border-bottom: 1px solid #eef2ea;
            margin-bottom: 20px;
        }
        .breadcrumb a {
            color: #1f5e2e;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb i {
            font-size: 0.7rem;
            color: #8a9a8a;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 20px 0 12px;
            color: #14381e;
            letter-spacing: -0.3px;
        }
        h1 i {
            color: #d4a11e;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            margin: 40px 0 14px;
            padding-bottom: 6px;
            border-bottom: 3px solid #d4e0cc;
            color: #1a4a26;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin: 28px 0 10px;
            color: #1f5e2e;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            margin: 20px 0 8px;
            color: #2d6e3d;
        }
        p {
            margin-bottom: 16px;
            font-size: 1.05rem;
            color: #1f2a1f;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 400;
            color: #2a3f2a;
            background: #f0f5ec;
            padding: 20px 24px;
            border-radius: 20px;
            border-left: 6px solid #1f5e2e;
            margin: 16px 0 24px;
        }
        .feature-img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
            border-radius: 24px;
            margin: 24px 0 16px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        }
        .img-caption {
            font-size: 0.9rem;
            color: #5a6a5a;
            text-align: center;
            margin-bottom: 28px;
            font-style: italic;
        }
        .highlight-box {
            background: linear-gradient(145deg, #f4f9f0, #eaf2e4);
            padding: 24px 28px;
            border-radius: 20px;
            margin: 24px 0;
            border: 1px solid #d4e0cc;
        }
        .highlight-box i {
            color: #d4a11e;
            margin-right: 8px;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 16px;
            margin: 24px 0;
        }
        .stat-card {
            background: #fff;
            padding: 20px;
            border-radius: 18px;
            text-align: center;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            border: 1px solid #e8ede4;
        }
        .stat-card .num {
            font-size: 2.4rem;
            font-weight: 800;
            color: #1f5e2e;
        }
        .stat-card .label {
            font-size: 0.95rem;
            color: #5a6a5a;
        }
        .interview-block {
            background: #f8faf6;
            padding: 24px 28px;
            border-radius: 20px;
            border-left: 6px solid #d4a11e;
            margin: 24px 0;
        }
        .interview-block .author {
            font-weight: 700;
            color: #1a4a26;
        }
        .btn-like {
            display: inline-block;
            background: #1f5e2e;
            color: #fff;
            padding: 8px 20px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            transition: 0.2s;
            border: none;
            cursor: pointer;
        }
        .btn-like:hover {
            background: #14381e;
            transform: scale(1.02);
        }
        .search-section {
            background: #f0f5ec;
            padding: 28px 32px;
            border-radius: 24px;
            margin: 36px 0;
        }
        .search-section form {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
        }
        .search-section input[type="text"] {
            flex: 1 1 240px;
            padding: 14px 20px;
            border-radius: 60px;
            border: 1px solid #c8d4c0;
            font-size: 1rem;
            background: #fff;
            outline: none;
            transition: 0.2s;
        }
        .search-section input[type="text"]:focus {
            border-color: #1f5e2e;
            box-shadow: 0 0 0 3px rgba(31, 94, 46, 0.12);
        }
        .search-section button {
            padding: 14px 32px;
            border-radius: 60px;
            background: #1f5e2e;
            color: #fff;
            font-weight: 600;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            transition: 0.2s;
        }
        .search-section button:hover {
            background: #14381e;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 36px 0;
        }
        @media (max-width:700px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .feedback-card {
            background: #fafcfa;
            padding: 24px 28px;
            border-radius: 20px;
            border: 1px solid #e8ede4;
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.3rem;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 12px;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            padding: 12px 16px;
            border-radius: 14px;
            border: 1px solid #d4dcd0;
            font-size: 0.95rem;
            background: #fff;
            outline: none;
            transition: 0.2s;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: #1f5e2e;
            box-shadow: 0 0 0 3px rgba(31, 94, 46, 0.1);
        }
        .feedback-card textarea {
            min-height: 90px;
            resize: vertical;
        }
        .feedback-card button {
            padding: 12px 24px;
            border-radius: 60px;
            background: #1f5e2e;
            color: #fff;
            font-weight: 600;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            transition: 0.2s;
            align-self: flex-start;
        }
        .feedback-card button:hover {
            background: #14381e;
        }
        .star-rating {
            display: flex;
            gap: 4px;
            font-size: 1.6rem;
            color: #d4a11e;
            cursor: pointer;
        }
        .star-rating i {
            transition: 0.15s;
        }
        .star-rating i:hover {
            transform: scale(1.2);
        }
        .footer {
            margin-top: 48px;
            padding-top: 28px;
            border-top: 2px solid #e8ede4;
        }
        .footer friend-link {
            display: block;
            padding: 16px 0;
            font-style: normal;
        }
        .footer friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            color: #1f5e2e;
            text-decoration: none;
            font-weight: 500;
        }
        .footer friend-link a:hover {
            text-decoration: underline;
        }
        .copyright {
            color: #5a6a5a;
            font-size: 0.9rem;
            padding: 16px 0 8px;
            border-top: 1px solid #e8ede4;
            margin-top: 12px;
            text-align: center;
        }
        .copyright a {
            color: #1f5e2e;
            text-decoration: none;
        }
        @media (max-width:780px) {
            .hamburger {
                display: block;
            }
            .nav-bar {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding: 12px 0 4px;
                gap: 2px;
            }
            .nav-bar.open {
                display: flex;
            }
            .nav-bar a {
                padding: 12px 16px;
                border-radius: 12px;
            }
            .my-logo {
                font-size: 1.6rem;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .wrapper {
                padding: 12px 14px 20px;
                border-radius: 18px;
            }
        }
        @media (max-width:480px) {
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
            .feedback-card {
                padding: 18px;
            }
            .search-section {
                padding: 20px;
            }
        }
        html {
            scroll-behavior: smooth;
        }
        a {
            color: #1f5e2e;
        }
        .back-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #1f5e2e;
            color: #fff;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
            text-decoration: none;
            transition: 0.25s;
            z-index: 99;
        }
        .back-top:hover {
            background: #14381e;
            transform: translateY(-4px);
        }
        .last-updated {
            font-size: 0.9rem;
            color: #6a7a6a;
            margin-top: -8px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .table-of-contents {
            background: #f4f9f0;
            padding: 20px 24px;
            border-radius: 18px;
            margin: 16px 0 28px;
            border: 1px solid #dce4d6;
        }
        .table-of-contents ul {
            columns: 2 220px;
            list-style: none;
            padding: 0;
            margin: 10px 0 0;
        }
        .table-of-contents li {
            padding: 4px 0;
        }
        .table-of-contents a {
            text-decoration: none;
            font-weight: 500;
        }
        .table-of-contents a:hover {
            text-decoration: underline;
        }
        @media (max-width:500px) {
            .table-of-contents ul {
                columns: 1;
            }
        }
        .tip {
            background: #eef6e8;
            padding: 16px 20px;
            border-radius: 16px;
            border-left: 5px solid #d4a11e;
            margin: 18px 0;
        }
        .tip i {
            color: #d4a11e;
            margin-right: 8px;
        }
