        *,
        *::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: #f4f7fb;
            color: #1a2634;
            line-height: 1.7;
            padding: 0 16px;
        }
        a {
            color: #0a6b3c;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #0d8a4e;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .wrapper {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.04);
            border-radius: 32px;
            padding: 0 24px 40px;
        }
        header {
            padding: 20px 0 12px;
            border-bottom: 2px solid #e8edf3;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            position: relative;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(145deg, #0a6b3c, #1e9e5e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            -webkit-text-fill-color: #0a6b3c;
            font-size: 2rem;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            -webkit-text-fill-color: #4a5a6a;
            display: block;
            letter-spacing: 0.3px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #1a2634;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #e8edf3;
        }
        .main-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 18px;
            align-items: center;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 0.95rem;
            padding: 6px 0;
            color: #2c3e50;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s, color 0.2s;
        }
        .main-nav a:hover {
            border-bottom-color: #0a6b3c;
            color: #0a6b3c;
            text-decoration: none;
        }
        .breadcrumb {
            padding: 14px 0 6px;
            font-size: 0.9rem;
            color: #5a6a7a;
            display: flex;
            flex-wrap: wrap;
            gap: 4px 10px;
            width: 100%;
            border-bottom: 1px solid #eef2f6;
            margin-bottom: 24px;
        }
        .breadcrumb a {
            color: #0a6b3c;
        }
        .breadcrumb span {
            color: #7a8a9a;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 28px 0 16px;
            color: #0a1a2a;
            letter-spacing: -0.3px;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 48px 0 18px;
            color: #0f2a1e;
            border-left: 6px solid #0a6b3c;
            padding-left: 18px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 32px 0 14px;
            color: #143626;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 22px 0 10px;
            color: #1d4a32;
        }
        p {
            margin-bottom: 1.2em;
            font-size: 1.05rem;
            color: #2a3a4a;
        }
        .hero-image {
            border-radius: 28px;
            overflow: hidden;
            margin: 32px 0 40px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
            background: #eef2f6;
        }
        .hero-image img {
            width: 100%;
            height: auto;
            aspect-ratio: 1200/630;
            object-fit: cover;
        }
        .hero-image figcaption {
            padding: 12px 20px;
            font-size: 0.9rem;
            color: #4a5a6a;
            background: #f8fafc;
            border-top: 1px solid #e8edf3;
        }
        .updated-badge {
            display: inline-block;
            background: #0a6b3c;
            color: #fff;
            padding: 4px 20px;
            border-radius: 40px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 12px;
            letter-spacing: 0.3px;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0 32px;
            border-radius: 16px;
            border: 1px solid #e8edf3;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.98rem;
        }
        th,
        td {
            padding: 14px 18px;
            text-align: left;
            border-bottom: 1px solid #eef2f6;
        }
        th {
            background: #f0f5fa;
            font-weight: 700;
            color: #0a2a1a;
        }
        tr:last-child td {
            border-bottom: none;
        }
        .form-card {
            background: #f8fafc;
            border-radius: 24px;
            padding: 28px 32px;
            margin: 32px 0;
            border: 1px solid #e8edf3;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
        }
        .form-card label {
            font-weight: 600;
            display: block;
            margin-bottom: 6px;
            color: #1a2a3a;
        }
        .form-card input,
        .form-card textarea,
        .form-card select {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #dde3ea;
            border-radius: 14px;
            font-size: 1rem;
            background: #fff;
            transition: border-color 0.2s, box-shadow 0.2s;
            font-family: inherit;
            margin-bottom: 18px;
        }
        .form-card input:focus,
        .form-card textarea:focus,
        .form-card select:focus {
            outline: none;
            border-color: #0a6b3c;
            box-shadow: 0 0 0 4px rgba(10, 107, 60, 0.1);
        }
        .form-card textarea {
            min-height: 120px;
            resize: vertical;
        }
        .btn {
            background: #0a6b3c;
            color: #fff;
            border: none;
            padding: 14px 36px;
            border-radius: 40px;
            font-size: 1.05rem;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .btn:hover {
            background: #0d8a4e;
            transform: scale(1.01);
        }
        .btn-secondary {
            background: #e8edf3;
            color: #1a2634;
        }
        .btn-secondary:hover {
            background: #d5dde6;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            gap: 6px;
            justify-content: flex-end;
            margin-bottom: 18px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2.2rem;
            color: #ccd7e4;
            cursor: pointer;
            transition: color 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5b342;
        }
        .link-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 10px 20px;
            margin: 24px 0 32px;
            padding: 0;
            list-style: none;
        }
        .link-grid li a {
            display: block;
            padding: 10px 16px;
            background: #f8fafc;
            border-radius: 40px;
            border: 1px solid #e8edf3;
            font-weight: 500;
            transition: background 0.2s, border-color 0.2s;
        }
        .link-grid li a:hover {
            background: #e8f5ee;
            border-color: #0a6b3c;
            text-decoration: none;
        }
        footer {
            margin-top: 60px;
            padding-top: 36px;
            border-top: 2px solid #e8edf3;
            font-size: 0.95rem;
            color: #4a5a6a;
        }
        footer .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 28px;
        }
        footer .footer-col {
            flex: 1 1 220px;
        }
        footer h4 {
            font-size: 1.1rem;
            margin-bottom: 12px;
            color: #0a1a2a;
        }
        friend-link {
            display: block;
            margin: 8px 0;
        }
        friend-link a {
            display: inline-block;
            padding: 4px 0;
            font-weight: 500;
        }
        .copyright {
            margin-top: 32px;
            padding-top: 18px;
            border-top: 1px solid #eef2f6;
            text-align: center;
            font-size: 0.9rem;
            color: #6a7a8a;
        }
        @media (max-width: 768px) {
            .wrapper {
                padding: 0 14px 30px;
                border-radius: 20px;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 2px;
                padding: 16px 0 8px;
                border-top: 1px solid #e8edf3;
                margin-top: 12px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 10px 0;
                font-size: 1.05rem;
                border-bottom: 1px solid #f0f4f8;
            }
            .form-card {
                padding: 20px 18px;
            }
            .star-rating label {
                font-size: 1.8rem;
            }
            .hero-image {
                margin: 20px 0 28px;
                border-radius: 18px;
            }
            .breadcrumb {
                font-size: 0.8rem;
                gap: 2px 6px;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .link-grid {
                grid-template-columns: 1fr 1fr;
                gap: 6px 12px;
            }
        }
        @media (max-width: 480px) {
            .link-grid {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 1.6rem;
            }
            .btn {
                width: 100%;
                justify-content: center;
            }
        }
        .highlight {
            background: #f0f9f4;
            padding: 0 6px;
            border-radius: 6px;
            font-weight: 600;
        }
        .emoji-lg {
            font-size: 1.4em;
            margin-right: 4px;
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .text-muted {
            color: #6a7a8a;
        }
        .flex-between {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
        }
