        *,
        *::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, 'Helvetica Neue', sans-serif;
            line-height: 1.7;
            background: #f7f4ef;
            color: #2c2c2c;
            padding: 0;
            margin: 0;
        }
        a {
            color: #2a7a4b;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #1d5c36;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #f5efe8 0%, #e8dfd4 100%);
            border-bottom: 3px solid #d4c9b8;
            padding: 18px 0 10px;
            position: relative;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 700;
            letter-spacing: -0.5px;
            color: #3b7550;
            text-shadow: 2px 2px 0 #e1d5c4;
            transition: transform 0.2s ease;
            display: inline-block;
            font-family: 'Georgia', 'Times New Roman', serif;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: #2d5e3e;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            color: #7a6b5a;
            display: block;
            letter-spacing: 1px;
            text-shadow: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 2rem;
            color: #3b7550;
            cursor: pointer;
            padding: 4px 12px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(59, 117, 80, 0.1);
        }
        .primary-nav {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }
        .primary-nav a {
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.9rem;
            color: #3b3b3b;
            transition: all 0.2s ease;
            background: transparent;
        }
        .primary-nav a:hover {
            background: #3b7550;
            color: #fff;
            text-decoration: none;
            transform: translateY(-1px);
        }
        .primary-nav a i {
            margin-right: 6px;
        }
        .breadcrumb {
            padding: 14px 0 6px;
            font-size: 0.85rem;
            color: #6f6f6f;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb a {
            color: #3b7550;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #9a8b7a;
        }
        .hero {
            background: linear-gradient(135deg, #e7ddd0 0%, #d6cabb 100%);
            border-radius: 24px;
            padding: 40px 36px;
            margin: 24px 0 32px;
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            align-items: center;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
        }
        .hero-text {
            flex: 2;
            min-width: 260px;
        }
        .hero-text h1 {
            font-size: 2.6rem;
            line-height: 1.2;
            color: #1f3f2e;
            font-weight: 800;
            margin-bottom: 12px;
        }
        .hero-text p {
            font-size: 1.15rem;
            color: #3d3d3d;
            max-width: 600px;
        }
        .hero-img {
            flex: 1.2;
            min-width: 240px;
            border-radius: 18px;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
        }
        .hero-img img {
            border-radius: 18px;
        }
        section {
            margin: 48px 0;
        }
        h2 {
            font-size: 2rem;
            color: #1f3f2e;
            border-left: 6px solid #3b7550;
            padding-left: 18px;
            margin-bottom: 24px;
            font-weight: 700;
        }
        h3 {
            font-size: 1.5rem;
            color: #2d5e3e;
            margin-top: 32px;
            margin-bottom: 14px;
            font-weight: 600;
        }
        h4 {
            font-size: 1.2rem;
            color: #3b3b3b;
            margin-top: 22px;
            margin-bottom: 10px;
            font-weight: 600;
        }
        p {
            margin-bottom: 18px;
            color: #3d3d3d;
        }
        .content-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 28px;
            margin: 28px 0;
        }
        .card {
            background: #ffffffec;
            border-radius: 18px;
            padding: 24px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            transition: transform 0.25s ease, box-shadow 0.3s ease;
            border: 1px solid #ece4d9;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
        }
        .card i {
            font-size: 2rem;
            color: #3b7550;
            margin-bottom: 12px;
        }
        .highlight-box {
            background: #eef6ed;
            border-radius: 16px;
            padding: 24px 28px;
            border-left: 6px solid #3b7550;
            margin: 28px 0;
        }
        .emoji-lg {
            font-size: 1.4rem;
        }
        .badge {
            display: inline-block;
            background: #3b7550;
            color: #fff;
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
            border-radius: 14px;
            background: #fff;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        th,
        td {
            padding: 14px 18px;
            text-align: left;
            border-bottom: 1px solid #e8e0d6;
        }
        th {
            background: #3b7550;
            color: #fff;
            font-weight: 600;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #f5f0ea;
        }
        .search-box {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            max-width: 600px;
            margin: 20px 0 30px;
        }
        .search-box input {
            flex: 1;
            min-width: 180px;
            padding: 14px 20px;
            border: 2px solid #d4c9b8;
            border-radius: 40px;
            font-size: 1rem;
            background: #fff;
            transition: border 0.2s;
        }
        .search-box input:focus {
            border-color: #3b7550;
            outline: none;
        }
        .search-box button {
            padding: 14px 32px;
            background: #3b7550;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .search-box button:hover {
            background: #2d5e3e;
            transform: scale(1.02);
        }
        .comment-area,
        .rating-area {
            background: #fffcf7;
            border-radius: 20px;
            padding: 28px 32px;
            border: 1px solid #e8dfd4;
            margin: 28px 0;
        }
        .comment-area textarea {
            width: 100%;
            padding: 16px;
            border: 2px solid #d4c9b8;
            border-radius: 14px;
            font-size: 1rem;
            resize: vertical;
            min-height: 110px;
            font-family: inherit;
            transition: border 0.2s;
        }
        .comment-area textarea:focus {
            border-color: #3b7550;
            outline: none;
        }
        .comment-area input[type="text"] {
            width: 100%;
            max-width: 360px;
            padding: 12px 18px;
            border: 2px solid #d4c9b8;
            border-radius: 40px;
            font-size: 1rem;
            margin: 8px 0 14px;
        }
        .comment-area input[type="text"]:focus {
            border-color: #3b7550;
            outline: none;
        }
        .btn-primary {
            background: #3b7550;
            color: #fff;
            border: none;
            padding: 12px 32px;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: inline-block;
        }
        .btn-primary:hover {
            background: #2d5e3e;
            transform: scale(1.02);
        }
        .rating-stars {
            display: flex;
            gap: 8px;
            font-size: 2rem;
            color: #d4c9b8;
            cursor: pointer;
            margin: 12px 0 16px;
        }
        .rating-stars i {
            transition: color 0.2s, transform 0.1s;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: #f5b342;
            transform: scale(1.1);
        }
        .site-footer {
            background: #2c2c2c;
            color: #d6d0c8;
            padding: 48px 0 30px;
            margin-top: 60px;
            border-radius: 40px 40px 0 0;
        }
        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: space-between;
        }
        .footer-col {
            flex: 1;
            min-width: 180px;
        }
        .footer-col h4 {
            color: #e8dfd4;
            font-size: 1.1rem;
            margin-bottom: 14px;
            border-left: 4px solid #3b7550;
            padding-left: 12px;
        }
        .footer-col a {
            color: #b8afa4;
            display: block;
            padding: 3px 0;
            font-size: 0.9rem;
        }
        .footer-col a:hover {
            color: #d6cbb8;
            text-decoration: underline;
        }
        friend-link {
            display: block;
            background: #1f1f1f;
            padding: 16px 20px;
            border-radius: 12px;
            margin: 10px 0 20px;
            font-size: 0.9rem;
            line-height: 1.8;
            color: #b8afa4;
        }
        friend-link a {
            color: #a8c9b2;
        }
        friend-link a:hover {
            color: #cde0d3;
        }
        .copyright {
            border-top: 1px solid #3d3d3d;
            padding-top: 24px;
            margin-top: 32px;
            text-align: center;
            font-size: 0.85rem;
            color: #8f867a;
        }
        .copyright i {
            margin: 0 4px;
        }
        .last-updated {
            display: inline-block;
            background: #e8dfd4;
            padding: 4px 18px;
            border-radius: 30px;
            font-size: 0.8rem;
            color: #3d3d3d;
            margin-bottom: 20px;
        }
        @media (max-width: 820px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .primary-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #f5efe8;
                padding: 16px 12px;
                border-radius: 16px;
                margin-top: 12px;
                border: 1px solid #d4c9b8;
            }
            .primary-nav.open {
                display: flex;
            }
            .primary-nav a {
                padding: 12px 18px;
                border-radius: 12px;
                width: 100%;
            }
            .hero {
                flex-direction: column;
                padding: 28px 20px;
            }
            .hero-text h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .comment-area,
            .rating-area {
                padding: 20px;
            }
            .footer-inner {
                flex-direction: column;
                gap: 24px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            .hero-text h1 {
                font-size: 1.7rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .search-box button {
                width: 100%;
            }
            .rating-stars {
                font-size: 1.6rem;
            }
        }
        .text-small {
            font-size: 0.9rem;
            color: #6f6f6f;
        }
        .mt-1 {
            margin-top: 12px;
        }
        .mb-1 {
            margin-bottom: 12px;
        }
        .flex {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            align-items: center;
        }
        .gap-8 {
            gap: 8px;
        }
        .fw-600 {
            font-weight: 600;
        }
        .text-center {
            text-align: center;
        }
        .rounded-img {
            border-radius: 16px;
        }
        hr {
            border: none;
            height: 2px;
            background: linear-gradient(to right, #d4c9b8, transparent);
            margin: 40px 0;
        }
        .rating-stars i.fas {
            color: #f5b342;
        }
        .rating-stars i.far {
            color: #d4c9b8;
        }
