        *,
        *::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: #f7f4ed;
            color: #1e2b24;
            line-height: 1.75;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #b8860b;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #8b6508;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin: 0.75rem 0;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1 {
            font-size: 2.4rem;
            font-weight: 800;
            color: #0f2b1f;
            margin: 0 0 1rem 0;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }
        h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1a3a2a;
            margin: 2.5rem 0 1rem 0;
            padding-bottom: 0.4rem;
            border-bottom: 3px solid #d4a74a;
            line-height: 1.25;
        }
        h3 {
            font-size: 1.35rem;
            font-weight: 600;
            color: #2d5a3e;
            margin: 1.8rem 0 0.8rem 0;
            line-height: 1.3;
        }
        h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #3d6b4e;
            margin: 1.2rem 0 0.5rem 0;
            line-height: 1.4;
        }
        p {
            margin: 0 0 1rem 0;
            font-size: 1.025rem;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 400;
            color: #2d3d33;
            line-height: 1.7;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .site-header {
            background: linear-gradient(135deg, #0f2b1f 0%, #1a3a2a 60%, #2d5a3e 100%);
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.5rem 1rem;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            color: #f5e6c8;
            letter-spacing: 1px;
            text-transform: uppercase;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo:hover {
            color: #d4a74a;
            text-decoration: none;
        }
        .my-logo .logo-icon {
            font-size: 1.8rem;
            color: #d4a74a;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #f5e6c8;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 0.2rem;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .nav-menu li {
            margin: 0;
        }
        .nav-menu a {
            display: block;
            padding: 0.5rem 1rem;
            color: #e8dcc8;
            font-weight: 500;
            font-size: 0.95rem;
            border-radius: 8px;
            transition: background 0.2s, color 0.2s;
            text-decoration: none;
        }
        .nav-menu a:hover {
            background: rgba(212, 167, 74, 0.2);
            color: #d4a74a;
            text-decoration: none;
        }
        .nav-menu .active a {
            color: #d4a74a;
            background: rgba(212, 167, 74, 0.12);
        }
        .breadcrumb {
            background: #ece6da;
            padding: 0.6rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #d6cebc;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            color: #8a7a5a;
            margin-right: 0.6rem;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #5a6b4e;
        }
        .breadcrumb a:hover {
            color: #b8860b;
        }
        .breadcrumb .current {
            color: #1e2b24;
            font-weight: 600;
        }
        .main-content {
            padding: 2.5rem 0 3rem 0;
        }
        .section-card {
            background: #ffffff;
            border-radius: 18px;
            padding: 2rem 2.2rem;
            margin-bottom: 2rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            border: 1px solid #e8e0d0;
            transition: box-shadow 0.25s ease;
        }
        .section-card:hover {
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
        }
        .feature-image {
            border-radius: 16px;
            overflow: hidden;
            margin: 1.5rem 0 2rem 0;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
        }
        .feature-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .feature-image figcaption {
            background: #f0ebe0;
            padding: 0.6rem 1.2rem;
            font-size: 0.9rem;
            color: #4a5a4a;
            font-style: italic;
        }
        .search-box {
            display: flex;
            gap: 0.5rem;
            max-width: 540px;
            margin: 1.2rem 0;
            flex-wrap: wrap;
        }
        .search-box input {
            flex: 1;
            padding: 0.7rem 1.2rem;
            border: 2px solid #d6cebc;
            border-radius: 40px;
            font-size: 1rem;
            background: #fcfaf6;
            transition: border 0.2s, box-shadow 0.2s;
            min-width: 160px;
        }
        .search-box input:focus {
            outline: none;
            border-color: #b8860b;
            box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.15);
        }
        .search-box button {
            padding: 0.7rem 1.6rem;
            background: #1a3a2a;
            color: #f5e6c8;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .search-box button:hover {
            background: #2d5a3e;
            transform: scale(1.02);
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: #1e2b24;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #d6cebc;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            background: #fcfaf6;
            transition: border 0.2s, box-shadow 0.2s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #b8860b;
            box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.12);
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn-primary {
            padding: 0.7rem 2rem;
            background: #b8860b;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .btn-primary:hover {
            background: #9a7209;
            transform: scale(1.02);
        }
        .btn-outline {
            padding: 0.6rem 1.6rem;
            background: transparent;
            color: #1a3a2a;
            border: 2px solid #1a3a2a;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.2s;
        }
        .btn-outline:hover {
            background: #1a3a2a;
            color: #f5e6c8;
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #d4a74a;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            transition: transform 0.15s, color 0.15s;
            color: #d6cebc;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #d4a74a;
            transform: scale(1.1);
        }
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 0.6rem 1.2rem;
            margin: 1rem 0;
            padding: 0;
            list-style: none;
        }
        .links-grid li {
            margin: 0;
        }
        .links-grid a {
            display: block;
            padding: 0.5rem 1rem;
            background: #f0ebe0;
            border-radius: 10px;
            border-left: 4px solid #d4a74a;
            font-weight: 500;
            transition: background 0.2s, transform 0.1s;
        }
        .links-grid a:hover {
            background: #e4dcc8;
            transform: translateX(4px);
            text-decoration: none;
        }
        .site-footer {
            background: #0f2b1f;
            color: #d6cebc;
            padding: 2.5rem 0 1.8rem 0;
            margin-top: 2rem;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        .footer-inner h3 {
            color: #d4a74a;
            font-size: 1.1rem;
            margin: 0 0 0.8rem 0;
            border: none;
            padding: 0;
        }
        .footer-inner ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-inner li {
            margin-bottom: 0.4rem;
        }
        .footer-inner a {
            color: #b8a88a;
        }
        .footer-inner a:hover {
            color: #d4a74a;
        }
        .footer-bottom {
            border-top: 1px solid #2d4a3a;
            margin-top: 2rem;
            padding-top: 1.5rem;
            text-align: center;
            font-size: 0.9rem;
            color: #8a9a8a;
        }
        .footer-bottom .copyright {
            font-weight: 500;
        }
        friend-link {
            display: block;
            margin: 0.8rem 0;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 0.6rem 0.2rem 0;
            padding: 0.3rem 0.8rem;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 20px;
            font-size: 0.9rem;
        }
        friend-link a:hover {
            background: rgba(212, 167, 74, 0.15);
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .section-card {
                padding: 1.2rem 1rem;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #0f2b1f;
                padding: 0.8rem 0;
                border-radius: 0 0 16px 16px;
                gap: 0;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 0.7rem 1.2rem;
                border-radius: 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .links-grid {
                grid-template-columns: 1fr;
            }
            .breadcrumb ol {
                font-size: 0.8rem;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .search-box {
                flex-direction: column;
            }
            .search-box button {
                width: 100%;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.9rem;
            }
            h1 {
                font-size: 1.5rem;
            }
            .section-card {
                padding: 0.9rem 0.8rem;
                border-radius: 12px;
            }
            .star-rating {
                font-size: 1.4rem;
            }
        }
        .text-gold {
            color: #b8860b;
        }
        .text-muted {
            color: #5a6a5a;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .mb-2 {
            margin-bottom: 2rem;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .badge {
            display: inline-block;
            background: #d4a74a;
            color: #0f2b1f;
            padding: 0.15rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
        }
        .last-updated {
            font-size: 0.9rem;
            color: #6a7a6a;
            border-left: 3px solid #d4a74a;
            padding-left: 0.8rem;
            margin: 1rem 0 1.5rem 0;
        }
        hr {
            border: none;
            border-top: 2px dashed #d6cebc;
            margin: 2rem 0;
        }
