        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #f7f3e9;
            color: #2d2a24;
            line-height: 1.75;
        }
        a {
            color: #b8860b;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus {
            color: #8b6508;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.25rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .site-header {
            background: linear-gradient(135deg, #2e5c2e 0%, #1e3f1e 100%);
            color: #f5f0e6;
            padding: 0.75rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.75rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 1px;
            color: #f5e6c8;
            text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
            transition: transform 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo:hover {
            transform: scale(1.02);
            color: #ffd78a;
            text-decoration: none;
        }
        .my-logo i {
            font-size: 2rem;
            color: #ffb347;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f5e6c8;
            color: #f5e6c8;
            font-size: 1.6rem;
            padding: 0.3rem 0.8rem;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .nav-menu {
            display: flex;
            gap: 0.25rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu a {
            color: #f5f0e6;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.95rem;
            transition: background 0.2s, color 0.2s;
            white-space: nowrap;
        }
        .nav-menu a:hover,
        .nav-menu a:focus {
            background: rgba(255, 255, 255, 0.2);
            color: #ffd78a;
            text-decoration: none;
        }
        .nav-menu a.active {
            background: #b8860b;
            color: #fff;
        }
        .breadcrumb {
            background: #e8e0d0;
            padding: 0.6rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #d6ccb8;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.5rem;
            color: #8b7a5a;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #6b5a3a;
        }
        .breadcrumb a:hover {
            color: #b8860b;
        }
        .breadcrumb .current {
            color: #3a2e1e;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #3a6b3a 0%, #1e3f1e 100%);
            color: #f5f0e6;
            padding: 3rem 0 2.5rem;
            text-align: center;
            border-bottom: 4px solid #b8860b;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 0.75rem;
            text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 1rem;
            opacity: 0.92;
        }
        .hero .badge {
            display: inline-block;
            background: #b8860b;
            color: #fff;
            padding: 0.3rem 1.2rem;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 1px;
            margin-top: 0.5rem;
        }
        .main-wrap {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 2.5rem;
            padding: 2.5rem 0;
        }
        .content-area {
            min-width: 0;
        }
        .sidebar {
            min-width: 0;
        }
        .content-area h2 {
            font-size: 2rem;
            color: #1e3f1e;
            border-left: 5px solid #b8860b;
            padding-left: 1rem;
            margin: 2.5rem 0 1rem;
        }
        .content-area h3 {
            font-size: 1.5rem;
            color: #2d5a2d;
            margin: 1.8rem 0 0.8rem;
            border-bottom: 2px dashed #d6ccb8;
            padding-bottom: 0.3rem;
        }
        .content-area h4 {
            font-size: 1.2rem;
            color: #4a3f2e;
            margin: 1.2rem 0 0.5rem;
            font-weight: 700;
        }
        .content-area p {
            margin-bottom: 1.1rem;
            font-size: 1.05rem;
        }
        .content-area .lead {
            font-size: 1.2rem;
            font-weight: 500;
            color: #3a2e1e;
            background: #f0eadc;
            padding: 1rem 1.5rem;
            border-radius: 10px;
            border-left: 4px solid #b8860b;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
        }
        .featured-image img {
            width: 100%;
            object-fit: cover;
            max-height: 480px;
        }
        .featured-image figcaption {
            background: #e8e0d0;
            padding: 0.6rem 1.2rem;
            font-size: 0.9rem;
            color: #4a3f2e;
            font-style: italic;
        }
        .styled-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            font-size: 0.98rem;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
        }
        .styled-table thead {
            background: #2e5c2e;
            color: #f5f0e6;
        }
        .styled-table th,
        .styled-table td {
            padding: 0.75rem 1rem;
            text-align: left;
            border-bottom: 1px solid #d6ccb8;
        }
        .styled-table tbody tr:nth-child(even) {
            background: #f0eadc;
        }
        .styled-table tbody tr:hover {
            background: #e4dcc8;
        }
        .highlight-box {
            background: #f0eadc;
            border-radius: 12px;
            padding: 1.5rem 2rem;
            margin: 1.5rem 0;
            border-left: 6px solid #b8860b;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .highlight-box .quote-author {
            font-weight: 700;
            margin-top: 0.75rem;
            color: #2e5c2e;
        }
        .interview-card {
            display: flex;
            gap: 1.5rem;
            background: #f0eadc;
            border-radius: 14px;
            padding: 1.5rem;
            margin: 1.5rem 0;
            align-items: flex-start;
            border: 1px solid #d6ccb8;
        }
        .interview-card .avatar {
            font-size: 3.5rem;
            color: #b8860b;
            flex-shrink: 0;
        }
        .interview-card .quote {
            font-style: italic;
            font-size: 1.05rem;
        }
        .interview-card .name {
            font-weight: 700;
            color: #2e5c2e;
            margin-top: 0.5rem;
        }
        .sidebar-card {
            background: #f0eadc;
            border-radius: 14px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            border: 1px solid #d6ccb8;
        }
        .sidebar-card h3 {
            font-size: 1.3rem;
            color: #1e3f1e;
            border-bottom: 2px solid #b8860b;
            padding-bottom: 0.4rem;
            margin-bottom: 1rem;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card ul li {
            padding: 0.4rem 0;
            border-bottom: 1px dashed #d6ccb8;
        }
        .sidebar-card ul li a {
            font-weight: 500;
        }
        .sidebar-card ul li a:hover {
            padding-left: 4px;
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
            margin: 1.2rem 0;
        }
        .search-form input[type="text"] {
            flex: 1;
            padding: 0.7rem 1rem;
            border: 2px solid #d6ccb8;
            border-radius: 30px;
            font-size: 1rem;
            background: #fff;
            outline: none;
            transition: border-color 0.2s;
        }
        .search-form input[type="text"]:focus {
            border-color: #b8860b;
        }
        .search-form button {
            background: #b8860b;
            color: #fff;
            border: none;
            border-radius: 30px;
            padding: 0.7rem 1.4rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-form button:hover {
            background: #9a7209;
            transform: scale(1.02);
        }
        .feedback-section {
            background: #f0eadc;
            border-radius: 14px;
            padding: 2rem;
            margin: 2.5rem 0;
            border: 1px solid #d6ccb8;
        }
        .feedback-section h2 {
            margin-top: 0;
            border-left-color: #b8860b;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-top: 1rem;
        }
        .feedback-form label {
            display: block;
            font-weight: 600;
            margin-top: 1rem;
            color: #2d2a24;
        }
        .feedback-form label:first-child {
            margin-top: 0;
        }
        .feedback-form input,
        .feedback-form textarea,
        .feedback-form select {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #d6ccb8;
            border-radius: 8px;
            font-size: 1rem;
            background: #fff;
            font-family: inherit;
            transition: border-color 0.2s;
        }
        .feedback-form input:focus,
        .feedback-form textarea:focus,
        .feedback-form select:focus {
            border-color: #b8860b;
            outline: none;
        }
        .feedback-form textarea {
            min-height: 90px;
            resize: vertical;
        }
        .feedback-form .btn-submit {
            background: #2e5c2e;
            color: #fff;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            margin-top: 1.2rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .feedback-form .btn-submit:hover {
            background: #1e3f1e;
            transform: scale(1.02);
        }
        .rating-stars {
            display: flex;
            gap: 0.25rem;
            font-size: 1.8rem;
            color: #d6ccb8;
            cursor: pointer;
            direction: rtl;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            cursor: pointer;
            transition: color 0.15s;
            font-size: 1.8rem;
            color: #d6ccb8;
        }
        .rating-stars label:hover,
        .rating-stars label:hover~label,
        .rating-stars input:checked~label {
            color: #ffb347;
        }
        .site-footer {
            background: #1e3a1e;
            color: #e0d8c8;
            padding: 2.5rem 0 1.5rem;
            margin-top: 2rem;
            border-top: 4px solid #b8860b;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        .site-footer h3 {
            color: #ffd78a;
            font-size: 1.2rem;
            margin-bottom: 0.8rem;
            border-bottom: 1px solid #3a5a3a;
            padding-bottom: 0.3rem;
        }
        .site-footer a {
            color: #c4b89a;
        }
        .site-footer a:hover {
            color: #ffd78a;
        }
        .friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem 1.2rem;
            list-style: none;
            padding: 0;
        }
        .friend-link li::before {
            content: "🌿";
            margin-right: 0.3rem;
        }
        .copyright {
            grid-column: 1 / -1;
            text-align: center;
            border-top: 1px solid #3a5a3a;
            padding-top: 1.5rem;
            margin-top: 1rem;
            font-size: 0.9rem;
            color: #a89a80;
        }
        @media (max-width: 992px) {
            .main-wrap {
                grid-template-columns: 1fr;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .footer-inner {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: inline-block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1e3f1e;
                padding: 1rem 0;
                border-radius: 0 0 12px 12px;
                margin-top: 0.5rem;
                gap: 0.15rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 0.6rem 1.5rem;
                border-radius: 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .content-area h2 {
                font-size: 1.6rem;
            }
            .content-area h3 {
                font-size: 1.3rem;
            }
            .interview-card {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            .interview-card .avatar {
                font-size: 2.8rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo i {
                font-size: 1.5rem;
            }
            .breadcrumb {
                font-size: 0.8rem;
            }
            .feedback-section {
                padding: 1.2rem;
            }
            .styled-table {
                font-size: 0.85rem;
            }
            .styled-table th,
            .styled-table td {
                padding: 0.5rem 0.6rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.9rem;
            }
            .hero {
                padding: 2rem 0 1.5rem;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                justify-content: center;
            }
            .rating-stars {
                font-size: 1.4rem;
            }
            .rating-stars label {
                font-size: 1.4rem;
            }
        }
        .scroll-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #b8860b;
            color: #fff;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            transition: background 0.2s, transform 0.2s;
            z-index: 999;
            border: none;
        }
        .scroll-top:hover {
            background: #9a7209;
            transform: translateY(-3px);
        }
        @media (max-width: 480px) {
            .scroll-top {
                bottom: 1.2rem;
                right: 1.2rem;
                width: 42px;
                height: 42px;
                font-size: 1.2rem;
            }
        }
