        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
            background: #fafaf8;
            color: #1a1a1a;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: #1e6f5c;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #0e4a3c;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #0f2922;
        }
        h1 {
            font-size: 2.4rem;
            margin: 2rem 0 1rem;
        }
        h2 {
            font-size: 1.8rem;
            margin: 2.4rem 0 1rem;
            border-bottom: 3px solid #d4e9e2;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.4rem;
            margin: 1.8rem 0 0.8rem;
        }
        h4 {
            font-size: 1.15rem;
            margin: 1.4rem 0 0.6rem;
            color: #2d5a4a;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(135deg, #0f2922 0%, #1e6f5c 100%);
            color: #fff;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #f4d03f;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: #f7dc6f;
        }
        .my-logo i {
            margin-right: 0.3rem;
            color: #fff;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.6rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.15);
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            list-style: none;
            padding: 0;
        }
        .nav-menu li a {
            color: #e8f0ed;
            font-weight: 500;
            padding: 0.3rem 0.6rem;
            border-radius: 4px;
            transition: background 0.2s, color 0.2s;
            font-size: 0.95rem;
        }
        .nav-menu li a:hover {
            background: rgba(255, 255, 255, 0.2);
            color: #f4d03f;
            text-decoration: none;
        }
        .nav-menu li a i {
            margin-right: 0.3rem;
        }
        .breadcrumb {
            background: #f0f5f2;
            padding: 0.6rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #d4e9e2;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin: 0 0.6rem;
            color: #7a9a8a;
        }
        .breadcrumb a {
            color: #1e6f5c;
        }
        .breadcrumb .active {
            color: #4a6b5e;
            font-weight: 600;
        }
        .search-section {
            background: #e8f0ed;
            padding: 2rem 0;
            border-radius: 12px;
            margin: 2rem 0;
        }
        .search-section .container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1rem;
            justify-content: center;
        }
        .search-section label {
            font-weight: 600;
            color: #0f2922;
            font-size: 1.1rem;
        }
        .search-section input[type="text"] {
            flex: 1 1 260px;
            padding: 0.7rem 1rem;
            border: 2px solid #c0d4cc;
            border-radius: 30px;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
            min-width: 180px;
        }
        .search-section input[type="text"]:focus {
            border-color: #1e6f5c;
        }
        .search-section button {
            background: #1e6f5c;
            color: #fff;
            border: none;
            padding: 0.7rem 1.8rem;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
        }
        .search-section button:hover {
            background: #0f4a3a;
            transform: scale(1.02);
        }
        .content-area {
            padding: 1.5rem 0 3rem;
        }
        .featured-image {
            border-radius: 16px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
            margin: 1.8rem 0 2.4rem;
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .highlight-box {
            background: #f0f9f5;
            border-left: 6px solid #1e6f5c;
            padding: 1.4rem 1.8rem;
            border-radius: 0 12px 12px 0;
            margin: 1.6rem 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 1.2rem;
            margin: 2rem 0;
        }
        .stat-card {
            background: #fff;
            border-radius: 12px;
            padding: 1.4rem 1rem;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
            border: 1px solid #e0ebe5;
        }
        .stat-card .number {
            font-size: 2.2rem;
            font-weight: 800;
            color: #1e6f5c;
        }
        .stat-card .label {
            font-size: 0.9rem;
            color: #4a6b5e;
            margin-top: 0.3rem;
        }
        .interview-card {
            background: #fff;
            border-radius: 16px;
            padding: 1.8rem;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
            margin: 1.8rem 0;
            border: 1px solid #e0ebe5;
        }
        .interview-card .quote {
            font-style: italic;
            font-size: 1.1rem;
            color: #0f2922;
            padding-left: 1.2rem;
            border-left: 4px solid #f4d03f;
            margin: 1rem 0;
        }
        .interview-card .attribution {
            font-weight: 600;
            color: #1e6f5c;
        }
        .related-links {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.2rem;
            list-style: none;
            padding: 0;
            margin: 1.6rem 0;
        }
        .related-links li a {
            background: #e8f0ed;
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #0f2922;
            transition: background 0.2s, color 0.2s;
        }
        .related-links li a:hover {
            background: #1e6f5c;
            color: #fff;
            text-decoration: none;
        }
        .feedback-section {
            background: #f5faf8;
            border-radius: 16px;
            padding: 2rem 1.8rem;
            margin: 2.8rem 0;
            border: 1px solid #d4e9e2;
        }
        .feedback-section h2 {
            border-bottom-color: #bcd9cf;
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 1.4rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: #0f2922;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #d0dfd7;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            transition: border 0.3s;
            background: #fff;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #1e6f5c;
            outline: none;
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .form-row {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .form-row .form-group {
            flex: 1 1 180px;
        }
        .btn {
            background: #1e6f5c;
            color: #fff;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn:hover {
            background: #0f4a3a;
            transform: translateY(-1px);
        }
        .btn-secondary {
            background: #6b8f7e;
        }
        .btn-secondary:hover {
            background: #4d7060;
        }
        .star-rating {
            display: flex;
            gap: 0.4rem;
            font-size: 1.8rem;
            color: #d4cfb0;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating .star {
            transition: color 0.2s, transform 0.2s;
        }
        .star-rating .star.active,
        .star-rating .star:hover {
            color: #f4d03f;
            transform: scale(1.1);
        }
        .star-rating .star:hover~.star {
            color: #d4cfb0;
            transform: scale(1);
        }
        .site-footer {
            background: #0f2922;
            color: #d0dfd7;
            padding: 2.5rem 0 1.2rem;
            margin-top: 3rem;
        }
        .site-footer a {
            color: #a5c8b8;
        }
        .site-footer a:hover {
            color: #f4d03f;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }
        .footer-inner h4 {
            color: #f4d03f;
            border-bottom: 2px solid #2d5a4a;
            padding-bottom: 0.4rem;
            margin-bottom: 0.8rem;
        }
        .friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.2rem;
            list-style: none;
            padding: 0;
            margin: 0.8rem 0;
        }
        .friend-link li a {
            background: rgba(255, 255, 255, 0.06);
            padding: 0.2rem 1rem;
            border-radius: 16px;
            font-size: 0.9rem;
            transition: background 0.2s;
        }
        .friend-link li a:hover {
            background: rgba(255, 255, 255, 0.15);
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            border-top: 1px solid #2d5a4a;
            padding-top: 1.2rem;
            margin-top: 1.8rem;
            font-size: 0.85rem;
            color: #8aab9a;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #0f2922;
                padding: 1rem 0 1.4rem;
                border-radius: 0 0 12px 12px;
                gap: 0.6rem;
                margin-top: 0.8rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                padding: 0.5rem 1rem;
                display: block;
                font-size: 1rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .search-section .container {
                flex-direction: column;
                align-items: stretch;
            }
            .search-section input[type="text"] {
                flex: 1 1 auto;
            }
            .stat-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .feedback-section {
                padding: 1.4rem;
            }
            .form-row {
                flex-direction: column;
            }
            .footer-inner {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.8rem;
            }
            h1 {
                font-size: 1.5rem;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
            .stat-card .number {
                font-size: 1.6rem;
            }
            .star-rating {
                font-size: 1.4rem;
            }
        }
        .text-muted {
            color: #5a7a6a;
        }
        .mt-1 {
            margin-top: 0.8rem;
        }
        .mb-1 {
            margin-bottom: 0.8rem;
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            align-items: center;
        }
        .last-updated {
            font-size: 0.9rem;
            color: #5a7a6a;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            margin: 0.6rem 0 1.4rem;
        }
