        *,
        *::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, sans-serif;
            background: #fefcf5;
            color: #1e2a2f;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #c84b1e;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #8f2e0e;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.25;
            color: #1e3a2f;
            font-weight: 700;
        }
        h1 {
            font-size: 2.4rem;
            margin: 0 0 0.5rem;
        }
        h2 {
            font-size: 1.8rem;
            margin: 2rem 0 0.75rem;
            border-left: 6px solid #f4a81b;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.35rem;
            margin: 1.6rem 0 0.5rem;
            color: #2a4a3a;
        }
        h4 {
            font-size: 1.1rem;
            margin: 1.2rem 0 0.4rem;
            color: #3a5a4a;
        }
        p {
            margin: 0 0 1.2rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        :root {
            --saffron: #f4a81b;
            --saffron-light: #fce4a8;
            --green: #138808;
            --green-dark: #0a5e04;
            --white: #ffffff;
            --cream: #fefcf5;
            --charcoal: #1e2a2f;
            --warm-brown: #6b4a2e;
            --light-grey: #f0ede6;
            --medium-grey: #c5bfb0;
            --accent-orange: #c84b1e;
            --accent-teal: #1a7a6a;
        }
        .site-header {
            background: linear-gradient(135deg, #f4a81b 0%, #e08e0b 100%);
            padding: 0.6rem 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.5rem 1rem;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #1e3a2f;
            background: rgba(255, 255, 255, 0.2);
            padding: 0.2rem 1rem 0.2rem 0.8rem;
            border-radius: 40px;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            text-decoration: none;
            transition: background 0.25s;
        }
        .my-logo i {
            color: #ffffff;
            font-size: 1.6rem;
            text-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        }
        .my-logo span {
            color: #1e3a2f;
            font-weight: 300;
        }
        .my-logo:hover {
            background: rgba(255, 255, 255, 0.35);
            text-decoration: none;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            flex-wrap: wrap;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 0.2rem;
            padding: 0;
            margin: 0;
        }
        .nav-list li a {
            display: block;
            padding: 0.5rem 0.9rem;
            color: #1e3a2f;
            font-weight: 600;
            border-radius: 30px;
            transition: background 0.2s, color 0.2s;
            font-size: 0.95rem;
        }
        .nav-list li a:hover {
            background: rgba(255, 255, 255, 0.5);
            color: #0a5e04;
            text-decoration: none;
        }
        .nav-list li a i {
            margin-right: 0.3rem;
            font-size: 0.85rem;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.7rem;
            color: #1e3a2f;
            cursor: pointer;
            padding: 0.2rem 0.5rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.3);
        }
        .breadcrumb {
            background: #f0ede6;
            padding: 0.5rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #ddd6c8;
        }
        .breadcrumb .container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.3rem;
        }
        .breadcrumb a {
            color: #6b4a2e;
        }
        .breadcrumb span {
            color: #8a7a6a;
        }
        .breadcrumb i {
            font-size: 0.7rem;
            color: #aaa08a;
            margin: 0 0.2rem;
        }
        .main-content {
            padding: 2rem 0 3rem;
        }
        .hero {
            background: linear-gradient(145deg, #ffffff 0%, #f8f4ec 100%);
            border-radius: 24px;
            padding: 2rem 2.5rem;
            margin-bottom: 2.5rem;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.04);
            border: 1px solid #e8e0d4;
        }
        .hero h1 {
            font-size: 2.8rem;
            color: #1e3a2f;
        }
        .hero .subhead {
            font-size: 1.2rem;
            color: #5a6a5a;
            margin-bottom: 1.2rem;
        }
        .hero .meta-info {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem 2rem;
            font-size: 0.95rem;
            color: #7a8a7a;
            border-top: 1px solid #e8e0d4;
            padding-top: 1rem;
            margin-top: 0.5rem;
        }
        .hero .meta-info i {
            color: var(--saffron);
            margin-right: 0.4rem;
        }
        .last-updated {
            font-weight: 600;
            color: #138808;
        }
        .img-card {
            border-radius: 20px;
            overflow: hidden;
            margin: 1.8rem 0;
            background: #e8e0d4;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
        }
        .img-card img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .img-card figcaption {
            padding: 0.8rem 1.5rem;
            background: #f8f4ec;
            font-size: 0.9rem;
            color: #5a6a5a;
            font-style: italic;
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .feature-card {
            background: #ffffff;
            border-radius: 18px;
            padding: 1.8rem 1.5rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            border: 1px solid #ede8de;
            transition: transform 0.2s, box-shadow 0.3s;
        }
        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
        }
        .feature-card i {
            font-size: 2rem;
            color: var(--saffron);
            margin-bottom: 0.8rem;
        }
        .feature-card h3 {
            margin-top: 0;
        }
        .search-section {
            background: #1e3a2f;
            border-radius: 24px;
            padding: 2.5rem 2rem;
            margin: 2.5rem 0;
            color: #ffffff;
        }
        .search-section h2 {
            color: #f4a81b;
            border-left-color: #f4a81b;
            margin-top: 0;
        }
        .search-form {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin: 1.5rem 0 0.5rem;
        }
        .search-form input[type="text"] {
            flex: 1 1 260px;
            padding: 0.9rem 1.4rem;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            background: #ffffff;
            color: #1e2a2f;
            outline: none;
        }
        .search-form input[type="text"]::placeholder {
            color: #8a9a8a;
        }
        .search-form button {
            padding: 0.9rem 2.2rem;
            border: none;
            border-radius: 50px;
            background: #f4a81b;
            color: #1e3a2f;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #e09a0c;
            transform: scale(1.02);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 2.5rem 0;
        }
        .feedback-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid #ede8de;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
        }
        .feedback-card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .feedback-card h3 i {
            color: var(--saffron);
        }
        .feedback-form label {
            display: block;
            font-weight: 600;
            margin: 1rem 0 0.3rem;
            color: #2a4a3a;
        }
        .feedback-form input,
        .feedback-form textarea,
        .feedback-form select {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 1px solid #d5cec0;
            border-radius: 12px;
            font-size: 0.95rem;
            font-family: inherit;
            background: #faf8f4;
            transition: border 0.2s;
        }
        .feedback-form input:focus,
        .feedback-form textarea:focus {
            border-color: var(--saffron);
            outline: none;
            background: #ffffff;
        }
        .feedback-form textarea {
            min-height: 90px;
            resize: vertical;
        }
        .feedback-form .btn-submit {
            margin-top: 1.2rem;
            padding: 0.8rem 2rem;
            border: none;
            border-radius: 50px;
            background: #138808;
            color: #ffffff;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .feedback-form .btn-submit:hover {
            background: #0a5e04;
            transform: scale(1.02);
        }
        .rating-stars {
            display: flex;
            gap: 0.4rem;
            font-size: 1.6rem;
            color: #d5cec0;
            cursor: pointer;
            direction: rtl;
        }
        .rating-stars i {
            transition: color 0.2s;
        }
        .rating-stars i:hover,
        .rating-stars i:hover~i {
            color: #f4a81b;
        }
        .link-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 0.8rem 1.2rem;
            margin: 1.8rem 0;
            padding: 1.5rem 1.8rem;
            background: #f8f4ec;
            border-radius: 18px;
            border: 1px solid #e8e0d4;
        }
        .link-grid a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.4rem 0.6rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .link-grid a:hover {
            background: #ede8de;
            text-decoration: none;
        }
        .link-grid a i {
            color: var(--saffron);
            font-size: 0.85rem;
        }
        .data-table-wrap {
            overflow-x: auto;
            margin: 1.8rem 0;
            border-radius: 16px;
            border: 1px solid #e8e0d4;
            background: #ffffff;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        .data-table th {
            background: #1e3a2f;
            color: #ffffff;
            padding: 0.8rem 1.2rem;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 0.7rem 1.2rem;
            border-bottom: 1px solid #ede8de;
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .data-table tr:nth-child(even) {
            background: #f8f4ec;
        }
        .site-footer {
            background: #1e3a2f;
            color: #d5dace;
            padding: 2.5rem 0 1.2rem;
            margin-top: 3rem;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        .site-footer h4 {
            color: #f4a81b;
            margin-bottom: 0.8rem;
        }
        .site-footer a {
            color: #d5dace;
        }
        .site-footer a:hover {
            color: #f4a81b;
        }
        .friend-link {
            display: block;
            padding: 0.3rem 0;
        }
        .friend-link i {
            margin-right: 0.4rem;
            color: #f4a81b;
            font-size: 0.75rem;
        }
        .copyright {
            grid-column: 1 / -1;
            border-top: 1px solid #2a5a4a;
            padding-top: 1.2rem;
            margin-top: 1rem;
            font-size: 0.9rem;
            text-align: center;
            color: #8aaa9a;
        }
        .copyright strong {
            color: #d5dace;
        }
        @media (max-width: 900px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
            .hero h1 {
                font-size: 2rem;
            }
        }
        @media (max-width: 720px) {
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(255, 255, 255, 0.2);
                border-radius: 16px;
                padding: 0.8rem;
                margin-top: 0.5rem;
            }
            .nav-list.open {
                display: flex;
            }
            .hamburger {
                display: inline-block;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .hero {
                padding: 1.5rem;
            }
            .hero h1 {
                font-size: 1.7rem;
            }
            .search-section {
                padding: 1.8rem 1.2rem;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .link-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 480px) {
            .link-grid {
                grid-template-columns: 1fr;
            }
            .feature-grid {
                grid-template-columns: 1fr;
            }
            .my-logo {
                font-size: 1.4rem;
                padding: 0.2rem 0.8rem;
            }
            .my-logo i {
                font-size: 1.2rem;
            }
            .container {
                padding: 0 0.8rem;
            }
        }
        .text-accent {
            color: #c84b1e;
        }
        .text-green {
            color: #138808;
        }
        .bg-soft {
            background: #f8f4ec;
            border-radius: 18px;
            padding: 1.8rem;
            margin: 1.8rem 0;
        }
        .emoji-lg {
            font-size: 1.8rem;
            line-height: 1;
        }
        .gap-row {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem 1rem;
            align-items: center;
        }
        .mt-2 {
            margin-top: 1.5rem;
        }
        .mb-1 {
            margin-bottom: 0.8rem;
        }
        .fw-700 {
            font-weight: 700;
        }
        .schema-hidden {
            display: none;
        }
        .anchor-offset {
            scroll-margin-top: 90px;
        }
