* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #f4f7fb;
            color: #1a2a3a;
            line-height: 1.7;
            font-size: 17px;
            padding: 0 16px;
        }
        .container {
            max-width: 1120px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.04);
            border-radius: 28px;
            padding: 24px 28px;
            margin-top: 20px;
            margin-bottom: 20px;
        }
        a {
            color: #0d6b4e;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #084b37;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 18px;
            display: block;
            margin: 24px 0;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
        }
        .header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 8px 0 18px 0;
            border-bottom: 2px solid #e8edf3;
            position: relative;
        }
        .my-logo {
            font-size: 28px;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #0f6b4e, #1a9e78);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            font-size: 30px;
            -webkit-text-fill-color: #0f6b4e;
            color: #0f6b4e;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.85;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #0d6b4e;
            color: #0d6b4e;
            font-size: 24px;
            padding: 6px 14px;
            border-radius: 40px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #0d6b4e;
            color: #fff;
        }
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 18px;
            align-items: center;
            list-style: none;
        }
        .nav-menu li a {
            font-weight: 600;
            font-size: 16px;
            padding: 6px 4px;
            color: #1a2a3a;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        .nav-menu li a:hover {
            color: #0d6b4e;
            border-bottom-color: #0d6b4e;
            text-decoration: none;
        }
        .nav-menu li a i {
            margin-right: 6px;
            font-size: 14px;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            padding: 14px 0 6px 0;
            font-size: 14px;
            color: #5e6f7e;
            list-style: none;
        }
        .breadcrumb li+li:before {
            content: "›";
            margin-right: 12px;
            color: #9aabb8;
            font-size: 18px;
            line-height: 1;
        }
        .breadcrumb a {
            color: #0d6b4e;
        }
        .breadcrumb .current {
            color: #1a2a3a;
            font-weight: 600;
        }
        h1 {
            font-size: 40px;
            line-height: 1.2;
            font-weight: 800;
            color: #0b2d22;
            margin: 28px 0 16px 0;
            letter-spacing: -0.5px;
        }
        h2 {
            font-size: 30px;
            font-weight: 700;
            color: #0f3d2e;
            margin: 44px 0 14px 0;
            padding-bottom: 6px;
            border-bottom: 3px solid #dce5ed;
        }
        h3 {
            font-size: 24px;
            font-weight: 600;
            color: #145a42;
            margin: 32px 0 10px 0;
        }
        h4 {
            font-size: 20px;
            font-weight: 600;
            color: #1d6b50;
            margin: 24px 0 8px 0;
        }
        p {
            margin: 0 0 18px 0;
            color: #1e2e3e;
        }
        .last-updated {
            font-size: 14px;
            color: #6f8294;
            border-left: 4px solid #0d6b4e;
            padding-left: 16px;
            margin: 18px 0 24px 0;
            background: #f0f5fa;
            padding: 10px 18px;
            border-radius: 0 12px 12px 0;
        }
        .last-updated i {
            margin-right: 8px;
        }
        .search-box {
            background: #f0f5fa;
            border-radius: 60px;
            padding: 6px 6px 6px 22px;
            display: flex;
            align-items: center;
            max-width: 480px;
            margin: 16px 0 24px 0;
            border: 1px solid #dce5ed;
            transition: 0.2s;
        }
        .search-box:focus-within {
            border-color: #0d6b4e;
            box-shadow: 0 0 0 4px rgba(13, 107, 78, 0.08);
        }
        .search-box input {
            flex: 1;
            border: none;
            background: transparent;
            padding: 12px 0;
            font-size: 16px;
            outline: none;
            color: #1a2a3a;
        }
        .search-box button {
            background: #0d6b4e;
            border: none;
            color: #fff;
            padding: 12px 28px;
            border-radius: 60px;
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            transition: 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-box button:hover {
            background: #084b37;
            transform: scale(0.97);
        }
        .feedback-section {
            background: #f8fafc;
            border-radius: 24px;
            padding: 32px 28px;
            margin: 40px 0 20px 0;
            border: 1px solid #e2eaf1;
        }
        .feedback-section h3 {
            margin-top: 0;
            border: none;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin-top: 18px;
        }
        .feedback-card {
            background: #fff;
            border-radius: 20px;
            padding: 24px 22px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
            border: 1px solid #e8edf3;
        }
        .feedback-card label {
            font-weight: 600;
            display: block;
            margin-bottom: 6px;
            color: #0b2d22;
        }
        .feedback-card textarea,
        .feedback-card input[type="text"],
        .feedback-card input[type="number"] {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #dce5ed;
            border-radius: 14px;
            font-size: 15px;
            font-family: inherit;
            background: #fcfdff;
            transition: 0.2s;
        }
        .feedback-card textarea:focus,
        .feedback-card input:focus {
            border-color: #0d6b4e;
            outline: none;
            box-shadow: 0 0 0 3px rgba(13, 107, 78, 0.06);
        }
        .feedback-card textarea {
            min-height: 90px;
            resize: vertical;
        }
        .feedback-card .btn-submit {
            background: #0d6b4e;
            color: #fff;
            border: none;
            padding: 12px 28px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            transition: 0.2s;
            margin-top: 10px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .feedback-card .btn-submit:hover {
            background: #084b37;
            transform: scale(0.97);
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 28px;
            color: #d4dce5;
            cursor: pointer;
            margin: 6px 0 12px 0;
        }
        .star-rating .fas.fa-star {
            color: #f5b342;
        }
        .star-rating .far.fa-star {
            color: #d4dce5;
        }
        .star-rating span {
            transition: 0.1s;
        }
        .star-rating span:hover {
            transform: scale(1.12);
        }
        .links-list {
            background: #f0f5fa;
            border-radius: 18px;
            padding: 20px 24px;
            margin: 28px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 12px 20px;
        }
        .links-list a {
            font-weight: 500;
            padding: 4px 0;
            border-bottom: 1px dotted #bccdd9;
        }
        .links-list a:hover {
            border-bottom-style: solid;
            text-decoration: none;
        }
        .links-list a i {
            margin-right: 6px;
            font-size: 13px;
            color: #0d6b4e;
        }
        friend-link {
            display: block;
            background: #f0f5fa;
            border-radius: 18px;
            padding: 20px 24px;
            margin: 28px 0 12px 0;
            font-style: normal;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 16px 4px 0;
            font-weight: 500;
        }
        friend-link a i {
            margin-right: 6px;
            color: #0d6b4e;
        }
        .footer {
            border-top: 2px solid #e8edf3;
            padding: 24px 0 12px 0;
            margin-top: 36px;
            text-align: center;
            font-size: 14px;
            color: #5e6f7e;
        }
        .footer p {
            margin: 4px 0;
            font-size: 14px;
        }
        .footer .copyright {
            font-weight: 500;
            color: #1a2a3a;
        }
        @media (max-width: 768px) {
            .container {
                padding: 16px 14px;
                margin-top: 12px;
                border-radius: 18px;
            }
            h1 {
                font-size: 28px;
            }
            h2 {
                font-size: 24px;
            }
            h3 {
                font-size: 20px;
            }
            h4 {
                font-size: 18px;
            }
            .header {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 16px 0 8px 0;
                gap: 4px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                display: block;
                padding: 10px 0;
                font-size: 17px;
                border-bottom: 1px solid #e8edf3;
                width: 100%;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .search-box {
                max-width: 100%;
                flex-wrap: wrap;
                border-radius: 40px;
                padding: 6px 6px 6px 16px;
            }
            .search-box button {
                padding: 10px 18px;
                font-size: 14px;
            }
            .links-list {
                flex-direction: column;
                gap: 8px;
            }
            .my-logo {
                font-size: 22px;
            }
            .breadcrumb {
                font-size: 13px;
            }
            .feedback-section {
                padding: 20px 16px;
            }
            .feedback-card {
                padding: 18px 16px;
            }
            .star-rating {
                font-size: 24px;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 8px;
                font-size: 16px;
            }
            .container {
                padding: 12px 10px;
            }
            h1 {
                font-size: 24px;
            }
            .my-logo {
                font-size: 19px;
            }
            .my-logo i {
                font-size: 22px;
            }
        }
        .emoji-big {
            font-size: 1.2em;
            display: inline-block;
            margin-right: 4px;
        }
        .highlight-box {
            background: #eaf4ef;
            border-radius: 16px;
            padding: 18px 22px;
            margin: 18px 0;
            border-left: 6px solid #0d6b4e;
        }
        .highlight-box strong {
            color: #084b37;
        }
        .stat-badge {
            display: inline-block;
            background: #0d6b4e;
            color: #fff;
            padding: 2px 14px;
            border-radius: 40px;
            font-size: 14px;
            font-weight: 600;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 20px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 15px;
            border-radius: 14px;
            overflow: hidden;
        }
        table th {
            background: #0d6b4e;
            color: #fff;
            padding: 12px 16px;
            text-align: left;
        }
        table td {
            padding: 10px 16px;
            border-bottom: 1px solid #e2eaf1;
        }
        table tr:nth-child(even) {
            background: #f8fafc;
        }
