        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #f8f9fc;
            color: #1a1e2b;
            line-height: 1.7;
            padding: 0 16px;
            max-width: 1200px;
            margin: 0 auto;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #0a6d3b;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus {
            color: #048c4a;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
            color: #0f1a2c;
        }
        h1 {
            font-size: 2.2rem;
            margin-top: 0.4rem;
        }
        h2 {
            font-size: 1.8rem;
            border-bottom: 3px solid #0a6d3b;
            padding-bottom: 0.3rem;
        }
        h3 {
            font-size: 1.4rem;
            color: #14342b;
        }
        h4 {
            font-size: 1.15rem;
            color: #1f4a3d;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            background: #ffffff;
            border-radius: 20px;
            padding: 24px 20px;
            margin: 20px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        }
        .badge {
            display: inline-block;
            background: #0a6d3b;
            color: #fff;
            font-size: 0.7rem;
            font-weight: 600;
            padding: 2px 12px;
            border-radius: 30px;
            letter-spacing: 0.5px;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 4px;
        }
        header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 16px 0 8px;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            background: linear-gradient(135deg, #0a6d3b, #16a75c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            -webkit-text-fill-color: #0a6d3b;
            font-size: 1.7rem;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 6px 4px;
        }
        .hamburger span {
            display: block;
            width: 28px;
            height: 3px;
            background: #0a6d3b;
            border-radius: 10px;
            transition: 0.3s;
        }
        nav {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 10px 18px;
        }
        nav a {
            font-weight: 500;
            color: #1e2b3a;
            padding: 4px 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
            font-size: 0.95rem;
        }
        nav a:hover {
            border-bottom-color: #0a6d3b;
            text-decoration: none;
            color: #0a6d3b;
        }
        .breadcrumb {
            font-size: 0.85rem;
            color: #5e6f8d;
            padding: 8px 0 4px;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            list-style: none;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin: 0 8px 0 4px;
            color: #9aabbf;
        }
        .breadcrumb a {
            color: #0a6d3b;
        }
        .search-box {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin: 20px 0 10px;
            background: #f0f4fa;
            padding: 12px 16px;
            border-radius: 40px;
            align-items: center;
        }
        .search-box i {
            color: #5e6f8d;
            font-size: 1.1rem;
        }
        .search-box input {
            flex: 1;
            min-width: 140px;
            border: none;
            background: transparent;
            padding: 8px 4px;
            font-size: 1rem;
            outline: none;
            color: #1a1e2b;
        }
        .search-box button {
            background: #0a6d3b;
            color: #fff;
            border: none;
            padding: 8px 24px;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
            font-size: 0.95rem;
        }
        .search-box button:hover {
            background: #048c4a;
            transform: scale(1.02);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 24px 0 12px;
        }
        .feedback-card {
            background: #f4f7fc;
            border-radius: 16px;
            padding: 20px 18px;
        }
        .feedback-card h4 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .feedback-card textarea,
        .feedback-card input,
        .feedback-card select {
            width: 100%;
            padding: 10px 12px;
            border: 1px solid #d0dae8;
            border-radius: 10px;
            font-size: 0.95rem;
            background: #fff;
            transition: 0.2s;
            margin-bottom: 10px;
            font-family: inherit;
        }
        .feedback-card textarea:focus,
        .feedback-card input:focus,
        .feedback-card select:focus {
            border-color: #0a6d3b;
            outline: none;
            box-shadow: 0 0 0 3px rgba(10, 109, 59, 0.12);
        }
        .feedback-card textarea {
            min-height: 70px;
            resize: vertical;
        }
        .feedback-card .btn-submit {
            background: #0a6d3b;
            color: #fff;
            border: none;
            padding: 10px 28px;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
            font-size: 0.95rem;
        }
        .feedback-card .btn-submit:hover {
            background: #048c4a;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.6rem;
            cursor: pointer;
            color: #d0dae8;
            transition: 0.1s;
            margin-bottom: 8px;
        }
        .star-rating i.active {
            color: #f5b342;
        }
        .star-rating i:hover,
        .star-rating i.hover {
            color: #f5b342;
        }
        .feature-img {
            border-radius: 18px;
            margin: 24px 0 20px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
            width: 100%;
            max-height: 500px;
            object-fit: cover;
        }
        footer {
            margin: 40px 0 20px;
            padding: 24px 0 12px;
            border-top: 2px solid #e4eaf2;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px;
        }
        friend-link {
            display: block;
            margin: 12px 0;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            color: #0a6d3b;
            font-weight: 500;
        }
        .copyright {
            font-size: 0.85rem;
            color: #5e6f8d;
            text-align: center;
            padding-top: 16px;
            border-top: 1px solid #e4eaf2;
            margin-top: 16px;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 10px;
            }
            .container {
                padding: 16px 14px;
                border-radius: 14px;
            }
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .hamburger {
                display: flex;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 12px 0 6px;
                gap: 6px;
            }
            nav.open {
                display: flex;
            }
            nav a {
                font-size: 1rem;
                padding: 6px 0;
                width: 100%;
                border-bottom: 1px solid #e4eaf2;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .feedback-card {
                padding: 16px 14px;
            }
            .search-box {
                padding: 10px 14px;
            }
            .search-box button {
                padding: 8px 18px;
                font-size: 0.9rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .footer-content {
                flex-direction: column;
                gap: 12px;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.4rem;
            }
            h2 {
                font-size: 1.2rem;
            }
            .star-rating {
                font-size: 1.3rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .text-muted {
            color: #5e6f8d;
        }
        .flex {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }
        .gap-4 {
            gap: 4px;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #6f7f9a;
            background: #f0f4fa;
            display: inline-block;
            padding: 4px 18px;
            border-radius: 40px;
            margin: 8px 0 16px;
        }
        .highlight-box {
            background: #f0f9f2;
            border-left: 4px solid #0a6d3b;
            padding: 16px 20px;
            border-radius: 0 12px 12px 0;
            margin: 20px 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 20px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        table th,
        table td {
            padding: 10px 14px;
            border: 1px solid #dde3ed;
            text-align: left;
        }
        table th {
            background: #0a6d3b;
            color: #fff;
            font-weight: 600;
        }
        table tr:nth-child(even) {
            background: #f6f9fc;
        }
        .btn-top {
            position: fixed;
            bottom: 28px;
            right: 28px;
            background: #0a6d3b;
            color: #fff;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
            transition: 0.2s;
            z-index: 99;
            border: none;
            cursor: pointer;
        }
        .btn-top:hover {
            background: #048c4a;
            transform: translateY(-3px);
        }
        .quote {
            font-style: italic;
            background: #fafff8;
            padding: 14px 20px;
            border-radius: 14px;
            border: 1px solid #d6e6db;
            margin: 18px 0;
            position: relative;
        }
        .quote::before {
            content: "“";
            font-size: 2.8rem;
            color: #0a6d3b;
            position: absolute;
            left: 10px;
            top: -4px;
            opacity: 0.25;
        }
        .tag {
            display: inline-block;
            background: #e4f0e8;
            color: #0a6d3b;
            font-size: 0.75rem;
            padding: 2px 14px;
            border-radius: 30px;
            font-weight: 600;
        }
