* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #f0f7e8;
            color: #1e3a2f;
            line-height: 1.7;
            font-size: 16px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #2d5a27 0%, #4a8c3f 100%);
            padding: 16px 0;
            border-bottom: 4px solid #f5c542;
            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.6rem;
            font-weight: 800;
            color: #f5e6b8;
            text-decoration: none;
            letter-spacing: 1px;
            text-shadow: 2px 2px 0 #1e3a2f;
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.03);
            color: #ffd966;
        }
        .my-logo i {
            margin-right: 8px;
            color: #f5c542;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #f5e6b8;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 12px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255,255,255,0.1);
        }
        .nav-menu {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu a {
            color: #f5e6b8;
            text-decoration: none;
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.25s;
            border: 1px solid transparent;
        }
        .nav-menu a:hover,
        .nav-menu a.active {
            background: #f5c542;
            color: #1e3a2f;
            border-color: #f5c542;
            transform: translateY(-2px);
        }
        .nav-menu a i {
            margin-right: 6px;
        }
        .breadcrumb {
            background: #e8f0e0;
            padding: 12px 0;
            border-bottom: 1px solid #c8dbc0;
        }
        .breadcrumb ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            font-size: 0.85rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 8px;
            color: #6a8f5e;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #2d5a27;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb .current {
            color: #6a8f5e;
            font-weight: 600;
        }
        main {
            padding: 30px 0 50px;
        }
        h1 {
            font-size: 2.4rem;
            color: #1e3a2f;
            margin-bottom: 20px;
            border-left: 6px solid #f5c542;
            padding-left: 20px;
            line-height: 1.2;
        }
        h1 i {
            color: #f5c542;
            margin-right: 12px;
        }
        h2 {
            font-size: 1.8rem;
            color: #2d5a27;
            margin-top: 48px;
            margin-bottom: 18px;
            border-bottom: 3px solid #c8dbc0;
            padding-bottom: 8px;
        }
        h2 i {
            color: #4a8c3f;
            margin-right: 10px;
        }
        h3 {
            font-size: 1.35rem;
            color: #3a6b33;
            margin-top: 32px;
            margin-bottom: 12px;
        }
        h3 i {
            margin-right: 8px;
            color: #f5c542;
        }
        h4 {
            font-size: 1.1rem;
            color: #4a7a42;
            margin-top: 24px;
            margin-bottom: 8px;
            font-weight: 700;
        }
        p {
            margin-bottom: 16px;
            color: #2a4538;
        }
        .content-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 30px 32px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.06);
            margin-bottom: 30px;
            border: 1px solid #e2efe0;
        }
        .content-card p:last-child {
            margin-bottom: 0;
        }
        .highlight-box {
            background: #f5fcee;
            border-left: 5px solid #f5c542;
            padding: 20px 24px;
            border-radius: 12px;
            margin: 24px 0;
        }
        .highlight-box strong {
            color: #1e3a2f;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 18px;
            margin: 24px 0;
        }
        .stat-item {
            background: #f0f7e8;
            border-radius: 16px;
            padding: 20px;
            text-align: center;
            border: 1px solid #d4e4cc;
            transition: transform 0.25s;
        }
        .stat-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(45,90,39,0.12);
        }
        .stat-item .num {
            font-size: 2.2rem;
            font-weight: 800;
            color: #2d5a27;
            display: block;
        }
        .stat-item .label {
            font-size: 0.9rem;
            color: #5a7f52;
            margin-top: 6px;
        }
        .stat-item i {
            font-size: 2rem;
            color: #f5c542;
            margin-bottom: 8px;
        }
        .link-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 12px;
            margin: 20px 0;
            list-style: none;
        }
        .link-list li a {
            display: block;
            padding: 12px 18px;
            background: #f5fcee;
            border-radius: 12px;
            color: #2d5a27;
            text-decoration: none;
            font-weight: 600;
            border: 1px solid #d4e4cc;
            transition: all 0.25s;
        }
        .link-list li a:hover {
            background: #2d5a27;
            color: #f5e6b8;
            border-color: #2d5a27;
            transform: translateX(6px);
        }
        .link-list li a i {
            margin-right: 8px;
            color: #f5c542;
        }
        .img-wrapper {
            margin: 28px 0;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
        }
        .img-wrapper img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.4s;
        }
        .img-wrapper:hover img {
            transform: scale(1.01);
        }
        .img-wrapper figcaption {
            background: #f5fcee;
            padding: 12px 20px;
            font-size: 0.9rem;
            color: #4a7a42;
            font-style: italic;
        }
        .interview-block {
            background: #f9fcf5;
            border-radius: 18px;
            padding: 24px 28px;
            border: 1px solid #d4e4cc;
            margin: 24px 0;
        }
        .interview-block .quote {
            font-size: 1.05rem;
            font-style: italic;
            color: #1e3a2f;
            border-left: 4px solid #f5c542;
            padding-left: 20px;
            margin: 16px 0;
        }
        .interview-block .author {
            font-weight: 700;
            color: #2d5a27;
            margin-top: 8px;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
            border-radius: 14px;
            border: 1px solid #d4e4cc;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
            min-width: 500px;
        }
        th {
            background: #2d5a27;
            color: #f5e6b8;
            padding: 14px 18px;
            text-align: left;
            font-weight: 700;
        }
        td {
            padding: 12px 18px;
            border-bottom: 1px solid #e2efe0;
        }
        tr:nth-child(even) td {
            background: #f5fcee;
        }
        tr:hover td {
            background: #e8f0e0;
        }
        .search-box {
            display: flex;
            gap: 10px;
            max-width: 520px;
            margin: 20px 0;
            flex-wrap: wrap;
        }
        .search-box input {
            flex: 1;
            padding: 14px 20px;
            border: 2px solid #c8dbc0;
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
            min-width: 180px;
        }
        .search-box input:focus {
            border-color: #4a8c3f;
        }
        .search-box button {
            background: #2d5a27;
            color: #f5e6b8;
            border: none;
            padding: 14px 28px;
            border-radius: 40px;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.25s;
            font-size: 1rem;
        }
        .search-box button:hover {
            background: #4a8c3f;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 28px 0;
        }
        @media (max-width: 700px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .feedback-card {
            background: #ffffff;
            border-radius: 18px;
            padding: 24px 26px;
            border: 1px solid #e2efe0;
            box-shadow: 0 4px 16px rgba(0,0,0,0.04);
        }
        .feedback-card h3 {
            margin-top: 0;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 12px;
        }
        .feedback-card label {
            font-weight: 600;
            color: #2d5a27;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            padding: 12px 16px;
            border: 2px solid #d4e4cc;
            border-radius: 12px;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.25s;
            font-family: inherit;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: #4a8c3f;
        }
        .feedback-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .feedback-card .btn {
            background: #f5c542;
            color: #1e3a2f;
            border: none;
            padding: 14px 24px;
            border-radius: 40px;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.25s;
            font-size: 1rem;
            align-self: flex-start;
        }
        .feedback-card .btn:hover {
            background: #e6b83a;
        }
        .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: #c8dbc0;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5c542;
        }
        footer {
            background: #1e3a2f;
            color: #d4e4cc;
            padding: 40px 0 20px;
            border-top: 4px solid #f5c542;
        }
        footer .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }
        @media (max-width: 600px) {
            footer .container {
                grid-template-columns: 1fr;
            }
        }
        friend-link {
            display: block;
        }
        friend-link h3 {
            color: #f5e6b8;
            border-bottom: 2px solid #4a8c3f;
            padding-bottom: 8px;
            margin-top: 0;
        }
        friend-link ul {
            list-style: none;
            margin-top: 12px;
        }
        friend-link li {
            margin-bottom: 8px;
        }
        friend-link a {
            color: #b8d4ac;
            text-decoration: none;
            transition: color 0.2s;
        }
        friend-link a:hover {
            color: #f5c542;
            text-decoration: underline;
        }
        .copyright {
            grid-column: 1 / -1;
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid #3a6b33;
            margin-top: 20px;
            font-size: 0.85rem;
            color: #8aad7e;
        }
        .copyright strong {
            color: #f5e6b8;
        }
        .last-updated {
            display: inline-block;
            background: #e8f0e0;
            color: #2d5a27;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 20px;
        }
        .last-updated i {
            margin-right: 6px;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                padding-top: 16px;
                gap: 4px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                width: 100%;
                text-align: center;
                padding: 12px;
                border-radius: 10px;
            }
            h1 {
                font-size: 1.7rem;
                padding-left: 14px;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .content-card {
                padding: 20px 18px;
            }
            .stat-grid {
                grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            }
            .link-list {
                grid-template-columns: 1fr;
            }
            .my-logo {
                font-size: 1.2rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            .feedback-card {
                padding: 18px 16px;
            }
            .search-box input {
                min-width: 140px;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #e8f0e0;
        }
        ::-webkit-scrollbar-thumb {
            background: #4a8c3f;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #2d5a27;
        }
        html {
            scroll-behavior: smooth;
        }
        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        textarea:focus-visible,
        select:focus-visible {
            outline: 3px solid #f5c542;
            outline-offset: 2px;
        }
