        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
            background: #f4f6f1;
            color: #1e2a1e;
            line-height: 1.75;
            padding: 0 16px;
            max-width: 1280px;
            margin: 0 auto;
        }
        a {
            color: #2d6a2d;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus-visible {
            color: #4caf50;
            text-decoration: underline;
            outline: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin: 0.75rem 0;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #1a3a1a;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
        }
        h1 {
            font-size: 2.2rem;
            border-bottom: 4px solid #4caf50;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 5px solid #4caf50;
            padding-left: 0.9rem;
        }
        h3 {
            font-size: 1.4rem;
            color: #2b532b;
        }
        h4 {
            font-size: 1.15rem;
            color: #3d6b3d;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.1rem;
            text-align: justify;
        }
        strong {
            color: #1e4a1e;
        }
        .container {
            background: #ffffff;
            border-radius: 24px;
            padding: 24px 28px;
            margin: 20px 0 32px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
        }
        .badge {
            display: inline-block;
            background: #e8f5e9;
            color: #1e4a1e;
            padding: 0.2rem 0.9rem;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.3px;
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 18px 0 10px;
            border-bottom: 2px solid #dce8dc;
            position: relative;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            background: linear-gradient(145deg, #2d6a2d, #4caf50);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            text-shadow: 0 2px 8px rgba(76, 175, 80, 0.15);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            -webkit-text-fill-color: #4caf50;
            font-size: 1.6rem;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .nav-bar {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .nav-bar a {
            padding: 8px 14px;
            border-radius: 40px;
            font-weight: 500;
            font-size: 0.9rem;
            color: #1e3a1e;
            background: transparent;
            transition: background 0.2s, transform 0.15s;
        }
        .nav-bar a:hover {
            background: #e8f5e9;
            transform: translateY(-1px);
            text-decoration: none;
        }
        .nav-bar a i {
            margin-right: 6px;
            color: #4caf50;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #1e3a1e;
            cursor: pointer;
            padding: 6px 10px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #e8f5e9;
        }
        .nav-mobile {
            display: none;
            width: 100%;
            flex-direction: column;
            background: #fafff9;
            border-radius: 16px;
            padding: 12px 8px;
            margin-top: 12px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
        }
        .nav-mobile a {
            padding: 10px 16px;
            border-radius: 12px;
            font-weight: 500;
            color: #1e3a1e;
            border-bottom: 1px solid #eef5ee;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .nav-mobile a:hover {
            background: #dcedc8;
            text-decoration: none;
        }
        .nav-mobile.open {
            display: flex;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            font-size: 0.85rem;
            padding: 12px 0 8px;
            color: #5a6f5a;
            list-style: none;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .breadcrumb li+li::before {
            content: "▸";
            color: #8aa88a;
            margin-right: 6px;
        }
        .breadcrumb a {
            color: #2d6a2d;
            font-weight: 500;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .hero-figure {
            margin: 24px 0 28px;
            border-radius: 18px;
            overflow: hidden;
            background: #eef5ee;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
        }
        .hero-figure img {
            width: 100%;
            max-height: 420px;
            object-fit: cover;
        }
        .hero-figure figcaption {
            padding: 12px 18px;
            font-size: 0.85rem;
            color: #3d5a3d;
            background: #f0f7f0;
            font-style: italic;
            border-top: 1px solid #dce8dc;
        }
        .search-box {
            background: #f0f7f0;
            border-radius: 60px;
            padding: 8px 8px 8px 20px;
            display: flex;
            align-items: center;
            max-width: 520px;
            margin: 20px 0 10px;
            border: 1px solid #cce0cc;
            transition: box-shadow 0.2s;
        }
        .search-box:focus-within {
            box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.25);
            border-color: #4caf50;
        }
        .search-box input {
            flex: 1;
            border: none;
            background: transparent;
            padding: 10px 6px;
            font-size: 0.95rem;
            outline: none;
            color: #1e2a1e;
        }
        .search-box input::placeholder {
            color: #7a9a7a;
        }
        .search-box button {
            background: #4caf50;
            border: none;
            color: #fff;
            padding: 10px 22px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-box button:hover {
            background: #388e3c;
            transform: scale(1.02);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 32px 0 20px;
        }
        .feedback-card {
            background: #f9fbf9;
            border-radius: 20px;
            padding: 22px 24px;
            border: 1px solid #e2ede2;
        }
        .feedback-card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.2rem;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            padding: 12px 16px;
            border-radius: 12px;
            border: 1px solid #cce0cc;
            font-size: 0.95rem;
            background: #fff;
            transition: border 0.2s, box-shadow 0.2s;
            font-family: inherit;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: #4caf50;
            box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.15);
            outline: none;
        }
        .feedback-card textarea {
            min-height: 90px;
            resize: vertical;
        }
        .feedback-card .btn-submit {
            background: #2d6a2d;
            color: #fff;
            border: none;
            padding: 12px 24px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            align-self: flex-start;
        }
        .feedback-card .btn-submit:hover {
            background: #1e4a1e;
            transform: translateY(-2px);
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 1.6rem;
            color: #f9a825;
            cursor: pointer;
        }
        .rating-stars i {
            transition: transform 0.15s, color 0.15s;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            transform: scale(1.2);
            color: #f57f17;
        }
        friend-link {
            display: block;
            background: #f0f7f0;
            border-radius: 18px;
            padding: 22px 26px;
            margin: 28px 0 16px;
            border: 1px solid #dce8dc;
        }
        friend-link::before {
            content: "🔗 Friendly Links";
            display: block;
            font-weight: 700;
            font-size: 1.1rem;
            color: #1e3a1e;
            margin-bottom: 12px;
            letter-spacing: 0.3px;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 4px 12px;
            background: #ffffff;
            border-radius: 30px;
            font-size: 0.9rem;
            border: 1px solid #cce0cc;
            transition: background 0.2s, border-color 0.2s;
        }
        friend-link a:hover {
            background: #dcedc8;
            border-color: #4caf50;
            text-decoration: none;
        }
        .site-footer {
            text-align: center;
            padding: 24px 0 32px;
            border-top: 2px solid #dce8dc;
            margin-top: 28px;
            font-size: 0.9rem;
            color: #4f6a4f;
        }
        .site-footer small {
            display: block;
            margin-top: 6px;
            opacity: 0.8;
        }
        @media (max-width: 820px) {
            .container {
                padding: 18px 16px;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .nav-bar a {
                font-size: 0.8rem;
                padding: 6px 10px;
            }
            .my-logo {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 660px) {
            .nav-bar {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .site-header {
                align-items: center;
            }
            .hero-figure img {
                max-height: 220px;
            }
            .search-box {
                flex-wrap: wrap;
                border-radius: 20px;
                padding: 6px;
            }
            .search-box input {
                padding: 8px 10px;
                min-width: 120px;
            }
            .search-box button {
                padding: 8px 16px;
                font-size: 0.8rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
                gap: 4px 8px;
            }
            .feedback-card {
                padding: 16px;
            }
        }
        @media (min-width: 661px) {
            .nav-mobile {
                display: none !important;
            }
        }
        .table-wrap {
            overflow-x: auto;
            margin: 20px 0;
        }
        .table-wrap table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
            background: #f9fbf9;
            border-radius: 12px;
            overflow: hidden;
        }
        .table-wrap th,
        .table-wrap td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid #e2ede2;
        }
        .table-wrap th {
            background: #dcedc8;
            font-weight: 700;
            color: #1a3a1a;
        }
        .table-wrap tr:last-child td {
            border-bottom: none;
        }
        .highlight {
            background: #fff8e1;
            padding: 0 4px;
            border-radius: 4px;
        }
        .quote-block {
            background: #f0f7f0;
            border-left: 5px solid #4caf50;
            padding: 16px 22px;
            border-radius: 0 16px 16px 0;
            margin: 20px 0;
            font-style: italic;
            color: #2b4a2b;
        }
        .emoji-lg {
            font-size: 1.4rem;
            margin-right: 4px;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .gap-2 {
            gap: 12px;
        }
        .mt-1 {
            margin-top: 12px;
        }
        .mb-1 {
            margin-bottom: 12px;
        }
