        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #f4f7fb;
            color: #1a2a3a;
            line-height: 1.7;
            padding: 0 16px;
            font-size: 16px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        a {
            color: #1a6b3c;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover {
            color: #c8a24e;
            text-decoration: underline;
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 700;
            line-height: 1.25;
            letter-spacing: -0.01em;
            color: #0f2a1a;
        }
        h1 {
            font-size: 2.4rem;
            margin-bottom: 0.5rem;
        }
        h2 {
            font-size: 1.8rem;
            margin-top: 2.8rem;
            margin-bottom: 0.8rem;
            border-left: 6px solid #c8a24e;
            padding-left: 18px;
        }
        h3 {
            font-size: 1.35rem;
            margin-top: 1.8rem;
            margin-bottom: 0.5rem;
            color: #1f4a2e;
        }
        h4 {
            font-size: 1.1rem;
            margin-top: 1.2rem;
            margin-bottom: 0.3rem;
            color: #2a5f3a;
        }
        p {
            margin-bottom: 1.1rem;
            font-size: 1.05rem;
        }
        ul,
        ol {
            margin: 0.8rem 0 1.2rem 1.8rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.2rem 0 1.8rem;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        th,
        td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid #e6edf2;
        }
        th {
            background: #0f2a1a;
            color: #f5f0e6;
            font-weight: 600;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #f0f7f2;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            border-radius: 24px;
            padding: 24px 28px 32px;
            box-shadow: 0 8px 30px rgba(0, 20, 10, 0.08);
        }
        @media (max-width: 600px) {
            body {
                padding: 0 8px;
            }
            .container {
                padding: 16px 14px 24px;
                border-radius: 16px;
            }
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.4rem;
                padding-left: 12px;
                border-left-width: 4px;
            }
            h3 {
                font-size: 1.15rem;
            }
            p {
                font-size: 0.98rem;
            }
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0 16px;
            border-bottom: 2px solid #e6edf2;
            margin-bottom: 12px;
            position: relative;
        }
        .my-logo {
            font-size: 1.7rem;
            font-weight: 800;
            background: linear-gradient(145deg, #0f2a1a, #1f6a3a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.02em;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            -webkit-text-fill-color: #c8a24e;
            font-size: 1.5rem;
        }
        .my-logo a {
            color: inherit;
            text-decoration: none;
            -webkit-text-fill-color: transparent;
        }
        .my-logo a:hover {
            text-decoration: none;
        }
        .nav-bar {
            display: flex;
            align-items: center;
            gap: 18px;
            flex-wrap: wrap;
        }
        .nav-bar a {
            font-weight: 600;
            font-size: 0.95rem;
            color: #1f3a2a;
            padding: 6px 10px;
            border-radius: 8px;
            transition: background 0.2s, color 0.2s;
        }
        .nav-bar a:hover {
            background: #e6f0ea;
            color: #0f2a1a;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #1a2a3a;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #e6edf2;
        }
        #nav-toggle {
            display: none;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-bar {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 6px;
                padding: 12px 0 4px;
                border-top: 1px solid #e6edf2;
                margin-top: 12px;
            }
            #nav-toggle:checked~.nav-bar {
                display: flex;
            }
            .nav-bar a {
                padding: 10px 12px;
                font-size: 1rem;
                width: 100%;
                border-radius: 6px;
            }
            .nav-bar a:hover {
                background: #dce8e0;
            }
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            font-size: 0.85rem;
            color: #5a6f6a;
            padding: 8px 0 12px;
            border-bottom: 1px solid #eef3f0;
            margin-bottom: 20px;
        }
        .breadcrumb a {
            color: #1a6b3c;
            font-weight: 500;
        }
        .breadcrumb span {
            color: #8a9a92;
        }
        .search-section {
            background: #f0f6f2;
            border-radius: 16px;
            padding: 20px 24px;
            margin: 16px 0 28px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px;
        }
        .search-section label {
            font-weight: 700;
            font-size: 1.1rem;
            color: #0f2a1a;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form {
            display: flex;
            flex: 1;
            gap: 8px;
            flex-wrap: wrap;
        }
        .search-form input {
            flex: 1;
            min-width: 160px;
            padding: 12px 18px;
            border: 2px solid #d0ddd6;
            border-radius: 50px;
            font-size: 1rem;
            background: #fff;
            transition: border 0.2s;
        }
        .search-form input:focus {
            border-color: #1a6b3c;
            outline: none;
            box-shadow: 0 0 0 3px rgba(26, 107, 60, 0.15);
        }
        .search-form button {
            background: #0f2a1a;
            color: #f5f0e6;
            border: none;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #1f6a3a;
            transform: scale(1.02);
        }
        @media (max-width: 500px) {
            .search-section {
                padding: 16px;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
        }
        .feature-img {
            margin: 24px 0 28px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            background: #eef3f0;
            text-align: center;
        }
        .feature-img img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .feature-img figcaption {
            padding: 10px 16px;
            font-size: 0.9rem;
            color: #4a5f55;
            background: #f9fcfb;
            font-style: italic;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 32px 0 20px;
        }
        @media (max-width: 700px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .feedback-card {
            background: #f7fbf9;
            border-radius: 16px;
            padding: 20px 22px;
            border: 1px solid #dce8e0;
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.25rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 8px;
        }
        .feedback-card input,
        .feedback-card textarea {
            padding: 12px 16px;
            border: 2px solid #d0ddd6;
            border-radius: 10px;
            font-size: 0.95rem;
            font-family: inherit;
            background: #fff;
            transition: border 0.2s;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus {
            border-color: #1a6b3c;
            outline: none;
            box-shadow: 0 0 0 3px rgba(26, 107, 60, 0.1);
        }
        .feedback-card textarea {
            min-height: 80px;
            resize: vertical;
        }
        .feedback-card button {
            background: #c8a24e;
            color: #0f2a1a;
            border: none;
            padding: 12px 20px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.1s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        .feedback-card button:hover {
            background: #dbb85e;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #d0ddd6;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #f0b800;
        }
        .site-footer {
            margin-top: 40px;
            padding-top: 24px;
            border-top: 2px solid #e6edf2;
            font-size: 0.9rem;
            color: #3a5a4a;
        }
        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px;
        }
        friend-link {
            display: block;
            background: #f0f6f2;
            padding: 16px 20px;
            border-radius: 12px;
            font-weight: 500;
        }
        friend-link a {
            font-weight: 600;
            display: inline-block;
            margin: 4px 0;
        }
        .copyright {
            text-align: center;
            padding: 16px 0 6px;
            font-size: 0.85rem;
            color: #5a7a6a;
            border-top: 1px solid #e6edf2;
            margin-top: 16px;
        }
        .copyright strong {
            color: #0f2a1a;
        }
        .badge {
            display: inline-block;
            background: #c8a24e;
            color: #0f2a1a;
            padding: 2px 14px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.03em;
        }
        .highlight-box {
            background: #f5f9f6;
            border-left: 6px solid #c8a24e;
            padding: 16px 20px;
            border-radius: 0 12px 12px 0;
            margin: 1.2rem 0;
        }
        .emoji-big {
            font-size: 1.4rem;
            margin-right: 4px;
        }
        .last-updated {
            display: inline-block;
            background: #e6edf2;
            padding: 4px 16px;
            border-radius: 50px;
            font-size: 0.8rem;
            color: #2a4a3a;
            font-weight: 500;
        }
        .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 16px;
            list-style: none;
            margin: 0.6rem 0 1rem;
        }
        .link-list-inline li a {
            font-weight: 500;
            background: #f0f6f2;
            padding: 4px 14px;
            border-radius: 50px;
            font-size: 0.9rem;
            transition: background 0.2s;
        }
        .link-list-inline li a:hover {
            background: #dce8e0;
            text-decoration: none;
        }
        @media (max-width: 600px) {
            table {
                font-size: 0.85rem;
            }
            th,
            td {
                padding: 8px 10px;
            }
        }
