* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background: #fafafa;
            color: #1e2a3a;
            line-height: 1.8;
            font-size: 16px;
        }
        a {
            color: #c0392b;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #a93226;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1a3a2a, #0d2818);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px 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.7rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #fff;
            background: linear-gradient(135deg, #f7b731, #f39c12);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 10px rgba(247, 183, 49, 0.2);
            transition: transform 0.3s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo i {
            -webkit-text-fill-color: #f7b731;
            margin-right: 6px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        .main-nav {
            display: flex;
            gap: 8px 18px;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: #e8e8e8;
            font-weight: 500;
            font-size: 0.92rem;
            padding: 6px 0;
            position: relative;
            transition: color 0.2s;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #f7b731;
            transition: width 0.3s;
        }
        .main-nav a:hover {
            color: #f7b731;
            text-decoration: none;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .breadcrumb-wrap {
            background: #f0ede8;
            padding: 10px 0;
            border-bottom: 1px solid #e0dbd4;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            font-size: 0.85rem;
            color: #5a4e42;
        }
        .breadcrumb a {
            color: #5a4e42;
        }
        .breadcrumb a:hover {
            color: #c0392b;
        }
        .breadcrumb .sep {
            color: #aaa;
        }
        .hero {
            padding: 40px 0 30px;
            text-align: center;
        }
        .hero h1 {
            font-size: 2.4rem;
            font-weight: 800;
            line-height: 1.3;
            color: #0d2818;
            margin-bottom: 12px;
        }
        .hero h1 span {
            background: linear-gradient(135deg, #c0392b, #e74c3c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero .subhead {
            font-size: 1.1rem;
            color: #5a4e42;
            max-width: 720px;
            margin: 0 auto 20px;
        }
        .hero .meta-info {
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
            font-size: 0.9rem;
            color: #7a6e62;
        }
        .hero .meta-info i {
            color: #c0392b;
            margin-right: 6px;
        }
        .content-wrap {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 20px 0 50px;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 14px;
            padding: 24px 20px;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
            margin-bottom: 28px;
            border: 1px solid #f0ede8;
        }
        .sidebar-card h4 {
            font-size: 1.1rem;
            margin-bottom: 14px;
            color: #0d2818;
            border-left: 4px solid #f7b731;
            padding-left: 12px;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card ul li {
            padding: 6px 0;
            border-bottom: 1px solid #f5f2ed;
            font-size: 0.92rem;
        }
        .sidebar-card ul li:last-child {
            border-bottom: none;
        }
        .sidebar-card ul li a {
            color: #2c3e50;
        }
        .sidebar-card ul li a:hover {
            color: #c0392b;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            margin: 44px 0 18px;
            color: #0d2818;
            position: relative;
            padding-bottom: 8px;
        }
        h2::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #f7b731, #f39c12);
            border-radius: 4px;
            margin-top: 6px;
        }
        h3 {
            font-size: 1.45rem;
            font-weight: 600;
            margin: 32px 0 14px;
            color: #1a3a2a;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            margin: 24px 0 10px;
            color: #2c3e50;
        }
        p {
            margin-bottom: 18px;
            color: #2c3e50;
        }
        .highlight-box {
            background: #fef9e7;
            border-left: 5px solid #f7b731;
            padding: 20px 24px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 16px;
            margin: 24px 0;
        }
        .stat-card {
            background: #fff;
            border-radius: 14px;
            padding: 20px 16px;
            text-align: center;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
            border: 1px solid #f0ede8;
            transition: transform 0.2s;
        }
        .stat-card:hover {
            transform: translateY(-4px);
        }
        .stat-card .num {
            font-size: 2rem;
            font-weight: 800;
            color: #c0392b;
        }
        .stat-card .label {
            font-size: 0.9rem;
            color: #5a4e42;
        }
        .interview-block {
            background: #f5f8fc;
            border-radius: 14px;
            padding: 24px 28px;
            margin: 28px 0;
            border: 1px solid #e2e8f0;
        }
        .interview-block .speaker {
            font-weight: 700;
            color: #0d2818;
        }
        .interview-block .speaker i {
            color: #f7b731;
            margin-right: 8px;
        }
        .btn {
            display: inline-block;
            padding: 10px 24px;
            border-radius: 8px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.25s;
            font-size: 0.95rem;
        }
        .btn-primary {
            background: #c0392b;
            color: #fff;
        }
        .btn-primary:hover {
            background: #a93226;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(192, 57, 43, 0.25);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #c0392b;
            color: #c0392b;
        }
        .btn-outline:hover {
            background: #c0392b;
            color: #fff;
        }
        .img-wrapper {
            margin: 32px 0;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
        }
        .img-wrapper img {
            width: 100%;
        }
        .img-wrapper .caption {
            padding: 12px 18px;
            background: #fff;
            font-size: 0.85rem;
            color: #5a4e42;
            border-top: 1px solid #f0ede8;
        }
        .search-section {
            background: #fff;
            border-radius: 14px;
            padding: 28px 30px;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
            margin: 32px 0;
            border: 1px solid #f0ede8;
        }
        .search-section form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .search-section input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 12px 18px;
            border: 2px solid #e0dbd4;
            border-radius: 8px;
            font-size: 1rem;
            outline: none;
            transition: border 0.2s;
        }
        .search-section input[type="text"]:focus {
            border-color: #c0392b;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 32px 0;
        }
        .feedback-card {
            background: #fff;
            border-radius: 14px;
            padding: 28px 30px;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
            border: 1px solid #f0ede8;
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.3rem;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            padding: 12px 16px;
            border: 2px solid #e0dbd4;
            border-radius: 8px;
            font-size: 0.95rem;
            font-family: inherit;
            outline: none;
            transition: border 0.2s;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: #c0392b;
        }
        .feedback-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .star-rating {
            display: flex;
            gap: 6px;
            direction: rtl;
            justify-content: flex-end;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f7b731;
        }
        .site-footer {
            background: #0d2818;
            color: #d4d4d4;
            padding: 40px 0 24px;
            margin-top: 50px;
        }
        .site-footer a {
            color: #f7b731;
        }
        .site-footer a:hover {
            color: #f39c12;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 24px;
        }
        .footer-inner h4 {
            color: #fff;
            margin-bottom: 14px;
            font-size: 1.05rem;
        }
        .footer-inner ul {
            list-style: none;
            padding: 0;
        }
        .footer-inner ul li {
            padding: 4px 0;
            font-size: 0.9rem;
        }
        friend-link {
            display: block;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 20px;
            margin-top: 16px;
            font-size: 0.9rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0 12px 6px 0;
        }
        .copyright {
            text-align: center;
            padding-top: 16px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            font-size: 0.85rem;
            color: #aaa;
        }
        @media (max-width: 900px) {
            .content-wrap {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                order: 2;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
            .hero h1 {
                font-size: 1.9rem;
            }
        }
        @media (max-width: 680px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                padding: 16px 0 8px;
                gap: 4px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 10px 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            }
            .footer-inner {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
            .search-section form {
                flex-direction: column;
            }
        }
        @media (max-width: 420px) {
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .hero .meta-info {
                flex-direction: column;
                gap: 6px;
            }
        }
