* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #f5f2eb;
            color: #2d2a24;
            line-height: 1.7;
            font-size: 1.05rem;
        }
        .container {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #3a7d3a, #2b5e2b);
            padding: 16px 0;
            border-bottom: 4px solid #c8a86e;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            color: #fff8e7;
            text-decoration: none;
            letter-spacing: 1px;
            text-shadow: 2px 2px 0 #2d4a2d;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i {
            color: #f5d742;
            font-size: 2rem;
        }
        .my-logo span {
            font-weight: 300;
            font-size: 0.9rem;
            color: #e0d5b8;
            display: block;
            line-height: 1.2;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff8e7;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255,255,255,0.15);
        }
        .main-nav {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: #f5eedd;
            text-decoration: none;
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.2s;
            background: rgba(255,255,255,0.06);
        }
        .main-nav a:hover {
            background: #f5d742;
            color: #2d4a2d;
            transform: translateY(-1px);
        }
        .main-nav a i {
            margin-right: 6px;
        }
        .breadcrumb-wrap {
            background: #e8e0d0;
            padding: 8px 0;
            border-bottom: 1px solid #d4c9b4;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 4px 12px;
            font-size: 0.9rem;
            color: #5a4f3e;
        }
        .breadcrumb a {
            color: #3a7d3a;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb i {
            margin: 0 4px;
            font-size: 0.7rem;
            color: #8a7e6a;
        }
        .content-wrap {
            background: #ffffff;
            border-radius: 24px 24px 0 0;
            padding: 40px 28px 60px;
            margin-top: 24px;
            box-shadow: 0 -4px 20px rgba(0,0,0,0.04);
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #2b5e2b;
            line-height: 1.2;
            margin-bottom: 12px;
            border-left: 6px solid #f5d742;
            padding-left: 20px;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #3a7d3a;
            margin-top: 48px;
            margin-bottom: 18px;
            border-bottom: 2px dashed #d4c9b4;
            padding-bottom: 8px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #4d6b3a;
            margin-top: 32px;
            margin-bottom: 12px;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #5f4e3a;
            margin-top: 24px;
            margin-bottom: 8px;
        }
        p {
            margin-bottom: 18px;
            color: #3d3730;
        }
        .hero-img {
            width: 100%;
            max-height: 420px;
            object-fit: cover;
            border-radius: 18px;
            margin: 24px 0 28px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.12);
            border: 3px solid #e8e0d0;
        }
        .highlight {
            background: #fdf8ee;
            border-left: 4px solid #f5d742;
            padding: 16px 22px;
            border-radius: 0 12px 12px 0;
            margin: 20px 0;
        }
        .highlight strong {
            color: #2b5e2b;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 18px;
            margin: 28px 0;
        }
        .stat-card {
            background: #f5f2eb;
            border-radius: 16px;
            padding: 22px 16px;
            text-align: center;
            border: 1px solid #e0d5c0;
            transition: transform 0.2s;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.06);
        }
        .stat-card i {
            font-size: 2.2rem;
            color: #3a7d3a;
            margin-bottom: 8px;
        }
        .stat-card .num {
            font-size: 2rem;
            font-weight: 800;
            color: #2b5e2b;
            display: block;
        }
        .stat-card .label {
            font-size: 0.9rem;
            color: #6a5f4e;
        }
        .interview-box {
            background: #f0efe8;
            border-radius: 18px;
            padding: 28px;
            margin: 28px 0;
            border: 1px solid #ddd6c8;
        }
        .interview-box .q {
            font-weight: 700;
            color: #2b5e2b;
        }
        .interview-box .a {
            margin-bottom: 16px;
            padding-left: 8px;
        }
        .btn {
            display: inline-block;
            background: #3a7d3a;
            color: #fff;
            padding: 10px 28px;
            border-radius: 40px;
            font-weight: 600;
            text-decoration: none;
            transition: background 0.2s, transform 0.1s;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }
        .btn:hover {
            background: #2b5e2b;
            transform: scale(1.02);
        }
        .btn i {
            margin-right: 8px;
        }
        .form-card {
            background: #faf8f4;
            border-radius: 20px;
            padding: 28px 24px;
            margin: 28px 0;
            border: 1px solid #e6dfd2;
            box-shadow: 0 2px 12px rgba(0,0,0,0.03);
        }
        .form-card label {
            font-weight: 600;
            color: #3d3730;
            display: block;
            margin-bottom: 4px;
        }
        .form-card input,
        .form-card textarea,
        .form-card select {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #d4c9b4;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            background: #fff;
            transition: border 0.2s;
            margin-bottom: 16px;
        }
        .form-card input:focus,
        .form-card textarea:focus {
            border-color: #3a7d3a;
            outline: none;
            box-shadow: 0 0 0 3px rgba(58,125,58,0.15);
        }
        .form-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #d4c9b4;
            cursor: pointer;
            margin-bottom: 16px;
            direction: rtl;
            justify-content: flex-end;
        }
        .star-rating i {
            transition: color 0.2s, transform 0.1s;
        }
        .star-rating i:hover,
        .star-rating i:hover~i {
            color: #f5d742;
            transform: scale(1.1);
        }
        .star-rating.active i.active {
            color: #f5d742;
        }
        .link-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 12px;
            margin: 22px 0;
        }
        .link-list a {
            background: #f5f2eb;
            padding: 10px 16px;
            border-radius: 12px;
            text-decoration: none;
            color: #2b5e2b;
            font-weight: 500;
            transition: all 0.2s;
            border: 1px solid #e0d5c0;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .link-list a:hover {
            background: #e8f0e0;
            border-color: #3a7d3a;
            transform: translateX(4px);
        }
        .link-list a i {
            color: #c8a86e;
        }
        .last-updated {
            font-size: 0.9rem;
            color: #8a7e6a;
            text-align: right;
            border-top: 1px solid #e8e0d0;
            padding-top: 16px;
            margin-top: 32px;
        }
        .site-footer {
            background: #2d2a24;
            color: #e0d5b8;
            padding: 36px 0 28px;
            margin-top: 0;
            border-top: 4px solid #c8a86e;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }
        .site-footer a {
            color: #c8e6b5;
            text-decoration: none;
        }
        .site-footer a:hover {
            color: #f5d742;
        }
        friend-link {
            display: block;
            background: #3a342e;
            padding: 18px 20px;
            border-radius: 14px;
            margin: 16px 0;
            font-style: normal;
        }
        friend-link a {
            display: inline-block;
            padding: 6px 14px;
            margin: 4px 6px 4px 0;
            background: #4d463e;
            border-radius: 30px;
            font-size: 0.9rem;
            transition: background 0.2s;
        }
        friend-link a:hover {
            background: #5f564c;
            color: #f5d742;
        }
        .copyright {
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid #4d463e;
            margin-top: 24px;
            font-size: 0.9rem;
            color: #9a8e7a;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: rgba(0,0,0,0.2);
                padding: 16px 12px;
                border-radius: 16px;
                margin-top: 12px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                width: 100%;
                padding: 12px 16px;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            h1 {
                font-size: 2rem;
                padding-left: 14px;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .content-wrap {
                padding: 24px 16px 40px;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
            .link-list {
                grid-template-columns: 1fr;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .my-logo span {
                font-size: 0.7rem;
            }
        }
        @media (max-width: 480px) {
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .container {
                padding: 0 12px;
            }
            h1 {
                font-size: 1.6rem;
            }
        }
        .hidden-schema {
            display: none;
        }
