        *,
        *::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;
            background: #f4f7f2;
            color: #1e2b1c;
            line-height: 1.7;
            padding: 0 1rem;
        }
        a {
            color: #2d6a4f;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #40916c;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            border-radius: 24px 24px 0 0;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
            padding: 1.5rem 2rem 2rem;
        }
        @media (max-width: 768px) {
            .container {
                padding: 1rem 1rem 1.5rem;
                border-radius: 16px 16px 0 0;
            }
            body {
                padding: 0 0.5rem;
            }
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 1.2rem 0 0.8rem;
            border-bottom: 2px solid #d8e2cf;
            position: relative;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #1b4332;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo i {
            color: #2d6a4f;
            font-size: 2rem;
        }
        .my-logo:hover {
            text-decoration: none;
            color: #2d6a4f;
        }
        .my-logo small {
            font-weight: 400;
            font-size: 0.7rem;
            color: #52796f;
            display: block;
            letter-spacing: 0.3px;
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 1.5rem;
            }
            .my-logo i {
                font-size: 1.6rem;
            }
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #1b4332;
            cursor: pointer;
            padding: 0.2rem 0.4rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #e9f0e5;
        }
        .main-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 0.2rem 1.2rem;
            list-style: none;
            align-items: center;
        }
        .main-nav a {
            font-weight: 500;
            padding: 0.3rem 0;
            color: #2d6a4f;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s, color 0.2s;
            font-size: 0.95rem;
        }
        .main-nav a:hover {
            border-bottom-color: #2d6a4f;
            text-decoration: none;
            color: #1b4332;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 1rem;
                gap: 0.3rem;
                background: #f4f7f2;
                padding: 1rem 1.2rem;
                border-radius: 16px;
                border: 1px solid #d8e2cf;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.5rem 0;
                border-bottom: 1px solid #d8e2cf;
            }
            .main-nav a:last-child {
                border-bottom: none;
            }
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.3rem 0.6rem;
            padding: 0.8rem 0 0.4rem;
            font-size: 0.9rem;
            color: #52796f;
        }
        .breadcrumb a {
            color: #2d6a4f;
        }
        .breadcrumb i {
            font-size: 0.7rem;
            color: #95b8a7;
        }
        .breadcrumb span.current {
            color: #1b4332;
            font-weight: 500;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            color: #1b4332;
            margin: 1.2rem 0 0.6rem;
            letter-spacing: -0.5px;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #1b4332;
            margin: 2.4rem 0 0.8rem;
            padding-bottom: 0.3rem;
            border-bottom: 3px solid #d8e2cf;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2d6a4f;
            margin: 1.8rem 0 0.6rem;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #3a5a40;
            margin: 1.2rem 0 0.4rem;
        }
        p {
            margin-bottom: 1.1rem;
            color: #2d3e2a;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 400;
            color: #3a5a40;
            line-height: 1.8;
        }
        strong {
            color: #1b4332;
            font-weight: 700;
        }
        em {
            color: #52796f;
        }
        .highlight {
            background: #e9f0e5;
            padding: 0.1rem 0.4rem;
            border-radius: 4px;
        }
        @media (max-width: 640px) {
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            h4 {
                font-size: 1.05rem;
            }
            .lead {
                font-size: 1.05rem;
            }
        }
        .featured-image {
            margin: 1.8rem 0 2.2rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        }
        .featured-image img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 0.6rem 1rem;
            font-size: 0.9rem;
            color: #52796f;
            background: #f4f7f2;
            font-style: italic;
        }
        .search-section {
            background: #e9f0e5;
            border-radius: 16px;
            padding: 1.6rem 2rem;
            margin: 2rem 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1rem;
        }
        .search-section label {
            font-weight: 600;
            color: #1b4332;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form {
            display: flex;
            flex: 1;
            min-width: 200px;
            gap: 0.5rem;
        }
        .search-form input {
            flex: 1;
            padding: 0.7rem 1rem;
            border: 2px solid #d8e2cf;
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.2s;
            background: #fff;
        }
        .search-form input:focus {
            border-color: #2d6a4f;
        }
        .search-form button {
            background: #2d6a4f;
            color: #fff;
            border: none;
            border-radius: 40px;
            padding: 0.7rem 1.6rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-form button:hover {
            background: #1b4332;
        }
        @media (max-width: 600px) {
            .search-section {
                padding: 1.2rem 1rem;
                flex-direction: column;
                align-items: stretch;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                justify-content: center;
            }
        }
        .rating-section {
            background: #f4f7f2;
            border-radius: 16px;
            padding: 1.6rem 2rem;
            margin: 2rem 0;
            border: 1px solid #d8e2cf;
        }
        .rating-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 2rem;
            color: #ccc;
            cursor: pointer;
            direction: rtl;
            justify-content: flex-end;
        }
        .rating-stars i {
            transition: color 0.15s, transform 0.1s;
            color: #ccc;
        }
        .rating-stars i:hover,
        .rating-stars i:hover~i {
            color: #f4c430;
            transform: scale(1.1);
        }
        .rating-stars.active i.active {
            color: #f4c430;
        }
        .rating-form {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1rem 2rem;
            margin-top: 0.8rem;
        }
        .rating-form button {
            background: #2d6a4f;
            color: #fff;
            border: none;
            border-radius: 40px;
            padding: 0.6rem 1.8rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }
        .rating-form button:hover {
            background: #1b4332;
        }
        .rating-avg {
            font-weight: 600;
            color: #1b4332;
        }
        .comment-section {
            margin: 2.5rem 0;
            padding: 1.6rem 2rem;
            background: #fafcfa;
            border-radius: 16px;
            border: 1px solid #e9f0e5;
        }
        .comment-form textarea {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 2px solid #d8e2cf;
            border-radius: 12px;
            font-size: 1rem;
            resize: vertical;
            min-height: 100px;
            font-family: inherit;
            transition: border-color 0.2s;
            background: #fff;
        }
        .comment-form textarea:focus {
            border-color: #2d6a4f;
            outline: none;
        }
        .comment-form .form-row {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 0.8rem;
            align-items: center;
        }
        .comment-form input {
            flex: 1;
            min-width: 180px;
            padding: 0.6rem 1rem;
            border: 2px solid #d8e2cf;
            border-radius: 40px;
            font-size: 0.95rem;
            background: #fff;
        }
        .comment-form input:focus {
            border-color: #2d6a4f;
            outline: none;
        }
        .comment-form button {
            background: #2d6a4f;
            color: #fff;
            border: none;
            border-radius: 40px;
            padding: 0.6rem 2rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }
        .comment-form button:hover {
            background: #1b4332;
        }
        .comment-list {
            margin-top: 1.5rem;
        }
        .comment-item {
            padding: 1rem 0;
            border-bottom: 1px solid #e9f0e5;
        }
        .comment-item:last-child {
            border-bottom: none;
        }
        .comment-author {
            font-weight: 600;
            color: #1b4332;
        }
        .comment-date {
            font-size: 0.85rem;
            color: #95b8a7;
            margin-left: 0.8rem;
        }
        .comment-text {
            margin-top: 0.3rem;
            color: #2d3e2a;
        }
        friend-link {
            display: block;
            padding: 1.6rem 2rem;
            background: #e9f0e5;
            border-radius: 16px;
            margin: 2.5rem 0 1.5rem;
        }
        friend-link h3 {
            margin-top: 0;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        friend-link ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.8rem;
            margin-top: 0.6rem;
        }
        friend-link a {
            font-weight: 500;
            padding: 0.2rem 0;
        }
        .site-footer {
            background: #1b4332;
            color: #d8e2cf;
            padding: 2rem 2rem 1.5rem;
            border-radius: 16px 16px 0 0;
            margin-top: 2rem;
        }
        .site-footer a {
            color: #a3c9b6;
        }
        .site-footer a:hover {
            color: #d8e2cf;
        }
        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-copy {
            text-align: center;
            padding-top: 1.2rem;
            border-top: 1px solid #2d6a4f;
            margin-top: 1.5rem;
            font-size: 0.9rem;
            color: #95b8a7;
        }
        @media (max-width: 640px) {
            .site-footer {
                padding: 1.5rem 1rem 1rem;
            }
            .footer-inner {
                flex-direction: column;
                gap: 1rem;
            }
        }
        .last-updated {
            display: inline-block;
            font-size: 0.9rem;
            color: #95b8a7;
            margin: 0.4rem 0 1rem;
            background: #f4f7f2;
            padding: 0.2rem 1rem;
            border-radius: 40px;
        }
        .divider {
            border: none;
            height: 2px;
            background: linear-gradient(to right, #d8e2cf, transparent);
            margin: 2rem 0;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.2rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        th,
        td {
            padding: 0.7rem 1rem;
            text-align: left;
            border-bottom: 1px solid #e9f0e5;
        }
        th {
            background: #e9f0e5;
            color: #1b4332;
            font-weight: 600;
        }
        .blockquote {
            border-left: 4px solid #2d6a4f;
            padding: 0.8rem 1.5rem;
            margin: 1.5rem 0;
            background: #f4f7f2;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #3a5a40;
        }
        @media (max-width: 480px) {
            .rating-stars {
                font-size: 1.6rem;
            }
            .comment-form .form-row {
                flex-direction: column;
            }
            .comment-form input {
                width: 100%;
                min-width: unset;
            }
            friend-link ul {
                flex-direction: column;
                gap: 0.3rem;
            }
        }
