        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #f0f4e8;
            color: #1e2a1e;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #2d6a2d;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #4caf50;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #1e3a1e 0%, #2d5a2d 100%);
            padding: 18px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 3px solid #7cb342;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 900;
            letter-spacing: -0.5px;
            color: #f5f5dc;
            text-shadow: 2px 2px 0 #1b2e1b, 4px 4px 0 #00000033;
            transition: transform 0.3s ease;
            font-family: 'Segoe UI', Tahoma, sans-serif;
        }
        .my-logo:hover {
            transform: scale(1.03);
            color: #e8f5e9;
            text-decoration: none;
        }
        .my-logo span {
            color: #aed581;
        }
        .nav-bar {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 6px;
            flex-wrap: wrap;
        }
        .nav-list li a {
            display: block;
            padding: 8px 16px;
            color: #e8f5e9;
            font-weight: 600;
            font-size: 0.95rem;
            border-radius: 30px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid transparent;
            transition: all 0.3s ease;
        }
        .nav-list li a:hover {
            background: rgba(255, 255, 255, 0.18);
            border-color: #aed581;
            color: #fff;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #f5f5dc;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 8px;
            transition: background 0.3s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.12);
        }
        .nav-toggle {
            display: none;
        }
        .breadcrumb {
            background: #e8f0e0;
            padding: 12px 0;
            border-bottom: 1px solid #c8dcc8;
            font-size: 0.9rem;
        }
        .breadcrumb ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
        }
        .breadcrumb ul li+li::before {
            content: "›";
            margin-right: 10px;
            color: #6a8f6a;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #2d6a2d;
        }
        .breadcrumb .active {
            color: #1e3a1e;
            font-weight: 700;
        }
        .main-wrapper {
            flex: 1;
            padding: 30px 0 50px;
        }
        .hero-section {
            background: linear-gradient(135deg, #dcedc8 0%, #c8e6c9 100%);
            border-radius: 20px;
            padding: 40px 36px;
            margin-bottom: 40px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
            border-left: 6px solid #2d6a2d;
        }
        .hero-section h1 {
            font-size: 2.6rem;
            font-weight: 900;
            color: #1b2e1b;
            line-height: 1.2;
            margin-bottom: 12px;
        }
        .hero-section h1 i {
            color: #4caf50;
            margin-right: 8px;
        }
        .hero-section .subtitle {
            font-size: 1.15rem;
            color: #2d4a2d;
            max-width: 780px;
            font-weight: 500;
        }
        .hero-section .meta-info {
            display: flex;
            flex-wrap: wrap;
            gap: 20px 36px;
            margin-top: 18px;
            font-size: 0.95rem;
            color: #3d5a3d;
        }
        .hero-section .meta-info i {
            margin-right: 6px;
            color: #4caf50;
        }
        .content-section {
            background: #ffffff;
            border-radius: 18px;
            padding: 32px 36px;
            margin-bottom: 30px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            border: 1px solid #e0ead8;
        }
        .content-section h2 {
            font-size: 1.9rem;
            font-weight: 800;
            color: #1b2e1b;
            border-bottom: 3px solid #aed581;
            padding-bottom: 10px;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .content-section h2 i {
            color: #4caf50;
            font-size: 1.6rem;
        }
        .content-section h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: #2d5a2d;
            margin: 28px 0 14px;
            padding-left: 8px;
            border-left: 4px solid #7cb342;
        }
        .content-section h4 {
            font-size: 1.15rem;
            font-weight: 700;
            color: #1e3a1e;
            margin: 20px 0 10px;
        }
        .content-section p {
            margin-bottom: 16px;
            text-align: justify;
        }
        .content-section ul,
        .content-section ol {
            margin: 12px 0 20px 28px;
        }
        .content-section li {
            margin-bottom: 8px;
        }
        .highlight-box {
            background: #f1f8e9;
            border-radius: 14px;
            padding: 20px 24px;
            border-left: 5px solid #4caf50;
            margin: 24px 0;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 18px;
            margin: 24px 0;
        }
        .stat-card {
            background: #f7faf3;
            border-radius: 14px;
            padding: 20px 18px;
            text-align: center;
            border: 1px solid #dce8d4;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
        }
        .stat-card .number {
            font-size: 2.2rem;
            font-weight: 900;
            color: #2d6a2d;
            display: block;
        }
        .stat-card .label {
            font-size: 0.95rem;
            color: #4a6a4a;
            font-weight: 600;
            margin-top: 4px;
        }
        .feature-image-wrapper {
            margin: 28px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
        }
        .feature-image-wrapper figcaption {
            background: #f1f8e9;
            padding: 12px 20px;
            font-size: 0.9rem;
            color: #3d5a3d;
            text-align: center;
            font-style: italic;
        }
        .interview-card {
            background: #f7faf3;
            border-radius: 16px;
            padding: 24px 28px;
            margin: 20px 0;
            border: 1px solid #dce8d4;
            position: relative;
        }
        .interview-card::before {
            content: "💬";
            font-size: 2rem;
            position: absolute;
            top: -12px;
            left: 20px;
            background: #fff;
            padding: 0 8px;
        }
        .interview-card .interviewee {
            font-weight: 700;
            color: #1b2e1b;
            margin-top: 8px;
        }
        .interview-card .interviewee span {
            font-weight: 400;
            color: #4a6a4a;
        }
        .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 18px;
            list-style: none;
            margin: 18px 0;
        }
        .link-list-inline li a {
            background: #e8f0e0;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 600;
            color: #2d5a2d;
            border: 1px solid #c8dcc8;
            transition: all 0.3s ease;
            display: inline-block;
        }
        .link-list-inline li a:hover {
            background: #2d6a2d;
            color: #fff;
            border-color: #2d6a2d;
            text-decoration: none;
        }
        .search-box {
            display: flex;
            gap: 10px;
            max-width: 560px;
            margin: 20px 0;
            flex-wrap: wrap;
        }
        .search-box input {
            flex: 1;
            padding: 12px 20px;
            border: 2px solid #c8dcc8;
            border-radius: 40px;
            font-size: 1rem;
            background: #f9fcf7;
            transition: border-color 0.3s;
            outline: none;
            min-width: 180px;
        }
        .search-box input:focus {
            border-color: #4caf50;
            box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.15);
        }
        .search-box button {
            padding: 12px 28px;
            background: #2d6a2d;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-box button:hover {
            background: #1e4a1e;
            transform: scale(1.02);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 24px 0;
        }
        @media (max-width:700px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .comment-area textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #c8dcc8;
            border-radius: 14px;
            font-size: 1rem;
            font-family: inherit;
            resize: vertical;
            min-height: 120px;
            background: #f9fcf7;
            transition: border-color 0.3s;
            outline: none;
        }
        .comment-area textarea:focus {
            border-color: #4caf50;
            box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.12);
        }
        .comment-area .form-actions {
            display: flex;
            gap: 12px;
            margin-top: 12px;
            flex-wrap: wrap;
        }
        .comment-area .form-actions button {
            padding: 10px 28px;
            background: #2d6a2d;
            color: #fff;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }
        .comment-area .form-actions button:hover {
            background: #1e4a1e;
        }
        .rating-area {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 2rem;
            color: #d4d4d4;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating i {
            transition: color 0.2s, transform 0.2s;
        }
        .star-rating i:hover,
        .star-rating i.active {
            color: #ffb300;
            transform: scale(1.1);
        }
        .rating-area button {
            padding: 10px 28px;
            background: #2d6a2d;
            color: #fff;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            align-self: flex-start;
            transition: background 0.3s;
        }
        .rating-area button:hover {
            background: #1e4a1e;
        }
        friend-link {
            display: block;
            padding: 24px 0 12px;
            border-top: 2px solid #dce8d4;
            margin-top: 20px;
        }
        friend-link .fl-head {
            font-weight: 700;
            font-size: 1.1rem;
            color: #1b2e1b;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        friend-link .fl-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 24px;
            list-style: none;
        }
        friend-link .fl-list a {
            color: #2d6a2d;
            font-weight: 500;
        }
        friend-link .fl-list a:hover {
            color: #4caf50;
        }
        .site-footer {
            background: #1e3a1e;
            color: #d4e4d0;
            padding: 32px 0 20px;
            margin-top: 40px;
            border-top: 4px solid #7cb342;
        }
        .site-footer .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px;
            align-items: center;
        }
        .site-footer .copyright {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        .site-footer .copyright i {
            margin-right: 4px;
        }
        .site-footer .footer-links a {
            color: #aed581;
            margin: 0 10px;
            font-size: 0.9rem;
        }
        .site-footer .footer-links a:hover {
            color: #fff;
        }
        .schema-hidden {
            display: none;
        }
        @media (max-width: 850px) {
            .header-inner {
                flex-wrap: nowrap;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: #1e3a1e;
                padding: 16px 20px;
                border-bottom: 3px solid #7cb342;
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
                gap: 4px;
                border-radius: 0 0 18px 18px;
            }
            .nav-list li a {
                padding: 12px 20px;
                border-radius: 10px;
            }
            .hamburger {
                display: block;
            }
            .nav-toggle:checked~.nav-list {
                display: flex;
            }
            .hero-section h1 {
                font-size: 1.9rem;
            }
            .hero-section {
                padding: 28px 20px;
            }
            .content-section {
                padding: 24px 18px;
            }
            .content-section h2 {
                font-size: 1.5rem;
            }
            .content-section h3 {
                font-size: 1.2rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .stat-grid {
                grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            }
        }
        @media (max-width: 480px) {
            .hero-section h1 {
                font-size: 1.5rem;
            }
            .container {
                padding: 0 12px;
            }
            .content-section {
                padding: 18px 14px;
            }
            .search-box input {
                min-width: 120px;
            }
            .breadcrumb ul {
                font-size: 0.8rem;
            }
        }
        .text-center {
            text-align: center;
        }
        .mt-20 {
            margin-top: 20px;
        }
        .mb-20 {
            margin-bottom: 20px;
        }
        .fw-700 {
            font-weight: 700;
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
        }
        button,
        a,
        .stat-card {
            transition: all 0.25s ease;
        }
        button:active {
            transform: scale(0.97);
        }
