* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f8f6f1;
            color: #2c2c2c;
            line-height: 1.8;
            font-size: 16px;
        }
        a {
            color: #1a6b3c;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #d4a017;
            text-decoration: underline;
        }
        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(145deg, #1a3b2b, #0f2a1e);
            color: #fff;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: 2px;
            color: #f5d742;
            text-transform: uppercase;
            text-shadow: 2px 2px 0 #1a6b3c;
        }
        .my-logo:hover {
            color: #fff;
            text-decoration: none;
        }
        .my-logo span {
            color: #fff;
            font-weight: 300;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f5d742;
            color: #f5d742;
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 6px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #f5d742;
            color: #1a3b2b;
        }
        nav {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            align-items: center;
        }
        nav a {
            color: #e0e8e2;
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.92rem;
            transition: 0.2s;
            border: 1px solid transparent;
        }
        nav a:hover {
            color: #f5d742;
            border-color: #f5d742;
            background: rgba(245, 215, 66, 0.08);
            text-decoration: none;
        }
        .breadcrumb {
            background: #eae6de;
            padding: 10px 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #d6d0c4;
        }
        .breadcrumb a {
            color: #1a6b3c;
        }
        .breadcrumb a:hover {
            color: #d4a017;
        }
        .breadcrumb span {
            color: #6b5e4a;
        }
        main {
            padding: 40px 0 60px;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #1a3b2b;
            margin-bottom: 20px;
            line-height: 1.3;
            border-left: 6px solid #f5d742;
            padding-left: 20px;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: #1a3b2b;
            margin-top: 50px;
            margin-bottom: 18px;
            border-bottom: 3px solid #f5d742;
            padding-bottom: 8px;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #2d5a3e;
            margin-top: 32px;
            margin-bottom: 12px;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #3d6b4e;
            margin-top: 22px;
            margin-bottom: 8px;
        }
        p {
            margin-bottom: 18px;
            text-align: justify;
        }
        .content-section {
            background: #fff;
            padding: 30px 30px 20px;
            border-radius: 16px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
        }
        .highlight-box {
            background: #f0f7f2;
            border-left: 5px solid #1a6b3c;
            padding: 18px 22px;
            border-radius: 0 12px 12px 0;
            margin: 20px 0;
        }
        .highlight-box strong {
            color: #1a3b2b;
        }
        .emoji-big {
            font-size: 1.4rem;
        }
        .featured-img {
            width: 100%;
            max-width: 750px;
            height: auto;
            border-radius: 14px;
            margin: 25px auto;
            display: block;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
            border: 2px solid #e0ddd0;
        }
        .search-box {
            background: linear-gradient(135deg, #1a3b2b, #2d5a3e);
            padding: 30px 30px;
            border-radius: 16px;
            color: #fff;
            margin-bottom: 30px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 15px;
        }
        .search-box label {
            font-size: 1.2rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-box input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            background: #f8f6f1;
            color: #2c2c2c;
            outline: none;
        }
        .search-box input[type="submit"] {
            padding: 14px 32px;
            border: none;
            border-radius: 40px;
            background: #f5d742;
            color: #1a3b2b;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
        }
        .search-box input[type="submit"]:hover {
            background: #ffea6a;
            transform: scale(1.02);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 30px 0;
        }
        @media (max-width:700px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .comment-card,
        .rating-card {
            background: #fff;
            padding: 24px 26px;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            border: 1px solid #e8e4d8;
        }
        .comment-card h3,
        .rating-card h3 {
            margin-top: 0;
            font-size: 1.3rem;
        }
        .comment-card textarea {
            width: 100%;
            padding: 14px;
            border: 2px solid #ddd8ca;
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
            resize: vertical;
            min-height: 80px;
            background: #fcfaf6;
            transition: 0.2s;
        }
        .comment-card textarea:focus {
            border-color: #1a6b3c;
            outline: none;
        }
        .comment-card input[type="submit"],
        .rating-card input[type="submit"] {
            padding: 12px 28px;
            border: none;
            border-radius: 40px;
            background: #1a6b3c;
            color: #fff;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
            margin-top: 10px;
        }
        .comment-card input[type="submit"]:hover,
        .rating-card input[type="submit"]:hover {
            background: #0f522a;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 6px;
            margin: 12px 0;
            font-size: 1.8rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #ccc;
            cursor: pointer;
            transition: 0.2s;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #f5b342;
        }
        friend-link {
            display: block;
            background: #1a3b2b;
            color: #e0e8e2;
            padding: 30px 30px;
            border-radius: 16px;
            margin-top: 40px;
        }
        friend-link a {
            color: #f5d742;
            font-weight: 500;
            display: inline-block;
            margin: 4px 12px 4px 0;
        }
        friend-link a:hover {
            color: #fff;
        }
        friend-link h3 {
            color: #f5d742;
            margin-top: 0;
            border-bottom: 2px solid #f5d742;
            padding-bottom: 6px;
            display: inline-block;
        }
        footer {
            background: #0f2a1e;
            color: #b8c9be;
            padding: 30px 0;
            text-align: center;
            font-size: 0.9rem;
            border-top: 3px solid #f5d742;
        }
        footer a {
            color: #f5d742;
        }
        footer a:hover {
            color: #fff;
        }
        .copyright {
            margin-top: 12px;
            letter-spacing: 0.5px;
        }
        @media (max-width:768px) {
            .nav-toggle {
                display: inline-block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                padding-top: 16px;
                gap: 6px;
            }
            nav.show {
                display: flex;
            }
            nav a {
                width: 100%;
                text-align: center;
                padding: 12px;
                border-radius: 8px;
                background: rgba(255, 255, 255, 0.05);
            }
            h1 {
                font-size: 1.9rem;
                padding-left: 14px;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .content-section {
                padding: 20px 16px;
            }
            .search-box {
                flex-direction: column;
                padding: 20px;
            }
            .search-box input[type="text"] {
                width: 100%;
                min-width: unset;
            }
            .search-box input[type="submit"] {
                width: 100%;
            }
            .header-inner {
                gap: 10px;
            }
            .my-logo {
                font-size: 1.5rem;
            }
        }
        @media (max-width:480px) {
            body {
                font-size: 15px;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            .feedback-grid {
                gap: 16px;
            }
            .comment-card,
            .rating-card {
                padding: 18px;
            }
        }
        .mt-20 {
            margin-top: 20px;
        }
        .mb-10 {
            margin-bottom: 10px;
        }
        .text-small {
            font-size: 0.9rem;
            color: #6b5e4a;
        }
        .update-badge {
            display: inline-block;
            background: #f5d742;
            color: #1a3b2b;
            padding: 4px 16px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.85rem;
            margin-bottom: 18px;
        }
