        *,
        *::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: #f5f2eb;
            color: #1e2a1e;
            line-height: 1.8;
            padding: 0;
            margin: 0;
        }
        a {
            color: #2d6a4f;
            text-decoration: underline;
            transition: color 0.2s;
        }
        a:hover {
            color: #1b4332;
            text-decoration: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin-bottom: 1.2rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #1b4332;
            margin-top: 2rem;
            margin-bottom: 0.8rem;
            letter-spacing: -0.02em;
        }
        h1 {
            font-size: 2.6rem;
            margin-top: 0.5rem;
        }
        h2 {
            font-size: 2rem;
            border-bottom: 3px solid #95d5b2;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.5rem;
        }
        h4 {
            font-size: 1.2rem;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        :root {
            --primary: #2d6a4f;
            --primary-dark: #1b4332;
            --primary-light: #95d5b2;
            --accent: #d4a373;
            --accent-light: #f0e3d3;
            --bg-cream: #f5f2eb;
            --bg-white: #ffffff;
            --text-dark: #1e2a1e;
            --text-muted: #4a5a4a;
            --border-light: #cfd8cf;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            --radius: 12px;
        }
        .site-header {
            background: var(--bg-white);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 100;
            padding: 0.6rem 0;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.03em;
            color: var(--primary-dark);
            text-decoration: none !important;
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo i {
            color: var(--accent);
            font-size: 1.6rem;
        }
        .my-logo:hover {
            color: var(--primary);
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            color: var(--text-muted);
            display: block;
            margin-top: -0.2rem;
        }
        .nav-bar {
            display: flex;
            align-items: center;
            gap: 1.8rem;
            flex-wrap: wrap;
        }
        .nav-bar a {
            text-decoration: none;
            font-weight: 600;
            color: var(--text-dark);
            font-size: 0.95rem;
            padding: 0.3rem 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s, color 0.2s;
        }
        .nav-bar a:hover {
            border-bottom-color: var(--primary);
            color: var(--primary);
        }
        .nav-bar a.active {
            border-bottom-color: var(--primary);
            color: var(--primary);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: var(--primary-dark);
            cursor: pointer;
            padding: 0.2rem 0.5rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: var(--accent-light);
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            background: var(--accent-light);
            padding: 0.7rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid var(--border-light);
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
            gap: 0.4rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin: 0 0.5rem;
            color: var(--text-muted);
        }
        .breadcrumb a {
            color: var(--primary);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb .current {
            color: var(--text-muted);
        }
        .hero {
            background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 60%, #40916c 100%);
            color: #fff;
            padding: 3.5rem 0 3rem;
            text-align: center;
            border-radius: 0 0 40px 40px;
            margin-bottom: 2.5rem;
        }
        .hero h1 {
            color: #fff;
            font-size: 3rem;
            margin-bottom: 0.5rem;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }
        .hero p {
            font-size: 1.25rem;
            opacity: 0.92;
            max-width: 720px;
            margin: 0 auto 1.8rem;
        }
        .hero .badge {
            display: inline-block;
            background: var(--accent);
            color: #1e2a1e;
            padding: 0.3rem 1.2rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }
        .section-wrap {
            background: var(--bg-white);
            border-radius: var(--radius);
            padding: 2rem 2.2rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
        }
        .section-wrap.alt {
            background: var(--accent-light);
        }
        .search-form {
            display: flex;
            gap: 0.8rem;
            max-width: 560px;
            margin: 1.5rem auto;
            flex-wrap: wrap;
        }
        .search-form input {
            flex: 1;
            min-width: 180px;
            padding: 0.8rem 1.2rem;
            border: 2px solid var(--border-light);
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-form input:focus {
            border-color: var(--primary);
        }
        .search-form button {
            background: var(--primary);
            color: #fff;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: var(--primary-dark);
            transform: scale(1.02);
        }
        .rating-wrap {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.8rem;
            margin: 1.5rem 0;
        }
        .stars {
            display: flex;
            gap: 0.3rem;
            font-size: 2rem;
            cursor: pointer;
        }
        .stars i {
            color: #ccc;
            transition: color 0.2s, transform 0.1s;
        }
        .stars i:hover,
        .stars i.hover {
            color: var(--accent);
            transform: scale(1.15);
        }
        .stars i.selected {
            color: #d4a373;
        }
        .rating-form button {
            background: var(--primary);
            color: #fff;
            border: none;
            padding: 0.6rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }
        .rating-form button:hover {
            background: var(--primary-dark);
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid var(--border-light);
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            resize: vertical;
            min-height: 120px;
            transition: border-color 0.3s;
        }
        .comment-form textarea:focus {
            border-color: var(--primary);
            outline: none;
        }
        .comment-form .field-group {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin: 0.8rem 0;
        }
        .comment-form .field-group input {
            flex: 1;
            min-width: 180px;
            padding: 0.7rem 1rem;
            border: 2px solid var(--border-light);
            border-radius: 8px;
            font-size: 1rem;
        }
        .comment-form .field-group input:focus {
            border-color: var(--primary);
            outline: none;
        }
        .comment-form button {
            background: var(--primary);
            color: #fff;
            border: none;
            padding: 0.8rem 2.2rem;
            border-radius: 50px;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.3s;
        }
        .comment-form button:hover {
            background: var(--primary-dark);
        }
        .feature-img {
            margin: 2rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .feature-img img {
            width: 100%;
            object-fit: cover;
        }
        .feature-img figcaption {
            background: var(--accent-light);
            padding: 0.6rem 1.2rem;
            font-size: 0.9rem;
            color: var(--text-muted);
            text-align: center;
            font-style: italic;
        }
        .styled-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            font-size: 0.98rem;
        }
        .styled-table th {
            background: var(--primary-dark);
            color: #fff;
            padding: 0.8rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        .styled-table td {
            padding: 0.7rem 1rem;
            border-bottom: 1px solid var(--border-light);
        }
        .styled-table tr:nth-child(even) {
            background: #f9faf9;
        }
        .styled-table tr:hover {
            background: #e8f5e9;
        }
        .site-footer {
            background: var(--primary-dark);
            color: #e0e8e0;
            padding: 2.5rem 0 1.5rem;
            margin-top: 3rem;
            border-radius: 40px 40px 0 0;
        }
        .site-footer a {
            color: #b7e4c7;
        }
        .site-footer a:hover {
            color: #fff;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-grid h4 {
            color: #b7e4c7;
            margin-top: 0;
        }
        friend-link {
            display: block;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid #3a5a3a;
            font-size: 0.95rem;
        }
        friend-link a {
            display: inline-block;
            margin-right: 1.5rem;
            margin-bottom: 0.4rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #3a5a3a;
            font-size: 0.9rem;
            color: #a0b8a0;
        }
        @media (max-width: 920px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-bar {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 0.6rem;
                padding: 1rem 0 0.5rem;
                border-top: 1px solid var(--border-light);
                margin-top: 0.6rem;
            }
            #nav-toggle:checked~.nav-bar {
                display: flex;
            }
            .header-inner {
                align-items: center;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .hero p {
                font-size: 1.05rem;
            }
            .section-wrap {
                padding: 1.5rem 1.2rem;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
            .styled-table {
                font-size: 0.85rem;
            }
            .styled-table th,
            .styled-table td {
                padding: 0.5rem 0.6rem;
            }
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 1.4rem;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero {
                padding: 2rem 0 2rem;
            }
            .container {
                padding: 0 0.8rem;
            }
            .breadcrumb {
                font-size: 0.8rem;
            }
            .stars {
                font-size: 1.6rem;
            }
        }
        .text-center {
            text-align: center;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .mb-2 {
            margin-bottom: 2rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .emoji-big {
            font-size: 2.2rem;
            line-height: 1;
        }
        .highlight-box {
            background: #e8f5e9;
            border-left: 5px solid var(--primary);
            padding: 1.2rem 1.5rem;
            border-radius: 8px;
            margin: 1.5rem 0;
        }
        .highlight-box.gold {
            background: #fef7ed;
            border-left-color: var(--accent);
        }
        .tag {
            display: inline-block;
            background: var(--primary-light);
            color: var(--primary-dark);
            padding: 0.2rem 0.9rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-right: 0.4rem;
        }
