        *,
        *::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: #f5f7fa;
            color: #1e293b;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: #0a6e3b;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #0b8a4a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin-bottom: 1rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .site-header {
            background: linear-gradient(135deg, #0b3b2c 0%, #0f5a3e 100%);
            color: #fff;
            padding: 0.75rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo i {
            color: #facc15;
            font-size: 2rem;
        }
        .my-logo:hover {
            text-decoration: none;
            color: #facc15;
        }
        .my-logo span {
            font-weight: 300;
            color: #a7f3d0;
            font-size: 1rem;
            display: block;
            font-size: 0.7rem;
            letter-spacing: 1px;
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            flex-wrap: wrap;
        }
        .nav-menu a {
            color: #e2f0e8;
            padding: 0.5rem 0.9rem;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: background 0.25s, color 0.25s;
            white-space: nowrap;
        }
        .nav-menu a:hover {
            background: rgba(255, 255, 255, 0.18);
            color: #facc15;
            text-decoration: none;
        }
        .nav-menu a i {
            margin-right: 0.35rem;
            font-size: 0.85rem;
        }
        .hamburger {
            display: none;
            background: transparent;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .breadcrumb {
            background: #eef2f0;
            padding: 0.65rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #d0dbd4;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "/";
            margin-right: 0.6rem;
            color: #7a8f84;
        }
        .breadcrumb a {
            color: #0a6e3b;
        }
        .breadcrumb .active {
            color: #4a5b52;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #0f5a3e 0%, #1a7a54 50%, #0b3b2c 100%);
            color: #fff;
            padding: 3rem 0 2.5rem;
            text-align: center;
            border-radius: 0 0 60px 60px;
            margin-bottom: 2rem;
        }
        .hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 0.75rem;
        }
        .hero h1 i {
            color: #facc15;
        }
        .hero p {
            font-size: 1.15rem;
            max-width: 760px;
            margin: 0 auto 1.5rem;
            opacity: 0.92;
        }
        .hero .last-updated {
            display: inline-block;
            background: rgba(255, 255, 255, 0.12);
            padding: 0.3rem 1.2rem;
            border-radius: 30px;
            font-size: 0.85rem;
            backdrop-filter: blur(4px);
        }
        .search-section {
            margin: -1.5rem auto 2.5rem;
            max-width: 640px;
            padding: 0 1rem;
            position: relative;
            z-index: 10;
        }
        .search-form {
            display: flex;
            background: #fff;
            border-radius: 60px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
            overflow: hidden;
            border: 2px solid transparent;
            transition: border 0.3s;
        }
        .search-form:focus-within {
            border-color: #0a6e3b;
        }
        .search-form input {
            flex: 1;
            border: none;
            padding: 1rem 1.5rem;
            font-size: 1rem;
            outline: none;
            background: transparent;
            min-width: 0;
        }
        .search-form button {
            background: #0a6e3b;
            color: #fff;
            border: none;
            padding: 0 2rem;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.25s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #0b8a4a;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 2.5rem;
            margin-bottom: 3rem;
        }
        .content-area {
            min-width: 0;
        }
        .sidebar-area {
            min-width: 0;
        }
        .content-area h2 {
            font-size: 2rem;
            color: #0b3b2c;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 4px solid #d0e8dc;
            position: relative;
        }
        .content-area h2::after {
            content: "";
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 80px;
            height: 4px;
            background: #0a6e3b;
            border-radius: 4px;
        }
        .content-area h3 {
            font-size: 1.5rem;
            color: #1a5a3e;
            margin: 1.8rem 0 0.6rem;
        }
        .content-area h4 {
            font-size: 1.2rem;
            color: #2d6b4a;
            margin: 1.4rem 0 0.4rem;
        }
        .content-area p {
            margin-bottom: 1.1rem;
            font-size: 1.02rem;
        }
        .content-area .highlight-box {
            background: #e6f4ee;
            border-left: 6px solid #0a6e3b;
            padding: 1.2rem 1.6rem;
            border-radius: 12px;
            margin: 1.5rem 0;
        }
        .content-area .highlight-box i {
            color: #0a6e3b;
            margin-right: 0.5rem;
        }
        .featured-image {
            border-radius: 18px;
            overflow: hidden;
            margin: 1.8rem 0;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        .featured-image figcaption {
            background: #eef2f0;
            padding: 0.6rem 1.2rem;
            font-size: 0.85rem;
            color: #2d4a3a;
            font-style: italic;
        }
        .sidebar-area .widget {
            background: #fff;
            border-radius: 18px;
            padding: 1.6rem;
            margin-bottom: 1.8rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid #e2ede6;
        }
        .sidebar-area .widget h3 {
            font-size: 1.2rem;
            color: #0b3b2c;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .sidebar-area .widget ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar-area .widget li {
            padding: 0.5rem 0;
            border-bottom: 1px solid #eaf1ec;
        }
        .sidebar-area .widget li:last-child {
            border-bottom: none;
        }
        .sidebar-area .widget a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #1e293b;
            font-weight: 500;
        }
        .sidebar-area .widget a:hover {
            color: #0a6e3b;
        }
        .sidebar-area .widget a i {
            color: #0a6e3b;
            width: 1.2rem;
        }
        .rating-widget {
            background: #fff;
            border-radius: 18px;
            padding: 1.6rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid #e2ede6;
            margin-bottom: 1.8rem;
        }
        .rating-widget h3 {
            font-size: 1.2rem;
            color: #0b3b2c;
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            margin-bottom: 0.8rem;
        }
        .star-rating i {
            transition: color 0.2s, transform 0.15s;
        }
        .star-rating i:hover,
        .star-rating i.active {
            color: #facc15;
            transform: scale(1.1);
        }
        .rating-widget .score-submit {
            background: #0a6e3b;
            color: #fff;
            border: none;
            padding: 0.6rem 1.8rem;
            border-radius: 30px;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.25s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .rating-widget .score-submit:hover {
            background: #0b8a4a;
        }
        .rating-widget .rating-feedback {
            margin-top: 0.6rem;
            font-size: 0.9rem;
            color: #2d6b4a;
        }
        .comment-section {
            background: #fff;
            border-radius: 18px;
            padding: 1.8rem;
            margin: 2.5rem 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid #e2ede6;
        }
        .comment-section h3 {
            font-size: 1.5rem;
            color: #0b3b2c;
            margin-bottom: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .comment-form textarea {
            width: 100%;
            border: 2px solid #d0dbd4;
            border-radius: 12px;
            padding: 0.9rem 1.2rem;
            font-size: 1rem;
            font-family: inherit;
            resize: vertical;
            min-height: 100px;
            transition: border 0.3s;
        }
        .comment-form textarea:focus {
            outline: none;
            border-color: #0a6e3b;
        }
        .comment-form .form-row {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin: 0.8rem 0;
        }
        .comment-form .form-row input {
            flex: 1;
            min-width: 180px;
            border: 2px solid #d0dbd4;
            border-radius: 12px;
            padding: 0.7rem 1rem;
            font-size: 0.95rem;
            transition: border 0.3s;
        }
        .comment-form .form-row input:focus {
            outline: none;
            border-color: #0a6e3b;
        }
        .comment-form .submit-btn {
            background: #0a6e3b;
            color: #fff;
            border: none;
            padding: 0.7rem 2.2rem;
            border-radius: 30px;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
        }
        .comment-form .submit-btn:hover {
            background: #0b8a4a;
        }
        .comment-feedback {
            margin-top: 0.8rem;
            font-size: 0.9rem;
            color: #2d6b4a;
        }
        .site-footer {
            background: #0b3b2c;
            color: #d4e4db;
            padding: 2.5rem 0 1.5rem;
            margin-top: 3rem;
            border-radius: 60px 60px 0 0;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        .footer-inner h4 {
            color: #facc15;
            font-size: 1.1rem;
            margin-bottom: 0.8rem;
        }
        .footer-inner a {
            color: #b8d9ca;
        }
        .footer-inner a:hover {
            color: #facc15;
        }
        .footer-inner ul {
            list-style: none;
            padding: 0;
        }
        .footer-inner li {
            margin-bottom: 0.4rem;
        }
        friend-link {
            display: block;
            margin-top: 1.2rem;
            padding-top: 1.2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 0.8rem 0.2rem 0;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            margin-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            font-size: 0.85rem;
            color: #9ab5a6;
        }
        @media (max-width: 992px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
            .hero h1 {
                font-size: 2rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding: 1rem 0 0.5rem;
                gap: 0.15rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 0.7rem 1rem;
                border-radius: 8px;
                white-space: normal;
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .hero {
                padding: 2rem 0 1.8rem;
                border-radius: 0 0 40px 40px;
            }
            .hero h1 {
                font-size: 1.7rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .search-form input {
                padding: 0.75rem 1rem;
                font-size: 0.9rem;
            }
            .search-form button {
                padding: 0 1.2rem;
                font-size: 0.95rem;
            }
            .content-area h2 {
                font-size: 1.6rem;
            }
            .content-area h3 {
                font-size: 1.25rem;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .site-footer {
                border-radius: 40px 40px 0 0;
                padding: 2rem 0 1rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
                padding: 0.5rem 0;
            }
            .rating-widget .star-rating {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.9rem;
            }
            .hero h1 {
                font-size: 1.4rem;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .my-logo span {
                font-size: 0.6rem;
            }
            .comment-form .form-row {
                flex-direction: column;
            }
            .comment-form .form-row input {
                min-width: unset;
            }
            .content-area h2 {
                font-size: 1.35rem;
            }
            .content-area p {
                font-size: 0.95rem;
            }
        }
        .fade-up {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }
