* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, Arial, sans-serif;
            background: #f7f5f0;
            color: #2e2b28;
            line-height: 1.7;
            font-size: 16px;
            padding: 0 16px;
        }
        a {
            color: #b76e2e;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #8b4e1e;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1120px;
            margin: 0 auto;
            background: #fffcf9;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
            border-radius: 24px;
            padding: 20px 24px 32px;
            margin-top: 20px;
            margin-bottom: 20px;
        }
        .header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0 16px;
            border-bottom: 2px solid #efe8de;
            position: relative;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #c17d3b;
            text-shadow: 2px 2px 0 #f0e2d4;
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: #a86429;
        }
        .my-logo i {
            color: #d4a373;
            margin-right: 6px;
        }
        .nav-wrap {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .nav-list {
            list-style: none;
            display: flex;
            gap: 6px 14px;
            flex-wrap: wrap;
        }
        .nav-list li a {
            font-weight: 500;
            padding: 6px 10px;
            border-radius: 40px;
            background: transparent;
            transition: background 0.2s, color 0.2s;
            font-size: 0.95rem;
        }
        .nav-list li a:hover {
            background: #f0e2d4;
            color: #7a4a22;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.6rem;
            cursor: pointer;
            background: none;
            border: none;
            color: #5a3f2b;
            padding: 4px 8px;
            border-radius: 8px;
            transition: background 0.15s;
        }
        .hamburger:hover {
            background: #f0e2d4;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #fffcf9;
                border-radius: 16px;
                padding: 16px 12px;
                margin-top: 12px;
                box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
                border: 1px solid #efe8de;
            }
            .nav-list.show {
                display: flex;
            }
            .nav-list li a {
                padding: 10px 14px;
                font-size: 1rem;
            }
            .header {
                flex-wrap: wrap;
            }
            .nav-wrap {
                width: 100%;
                flex-direction: column;
                align-items: stretch;
            }
        }
        .breadcrumb {
            padding: 12px 0 8px;
            font-size: 0.85rem;
            color: #7a6b5e;
        }
        .breadcrumb a {
            color: #b76e2e;
        }
        .breadcrumb i {
            margin: 0 6px;
            font-size: 0.7rem;
            color: #c9b6a4;
        }
        h1 {
            font-size: 2.4rem;
            font-weight: 800;
            color: #3d2b1b;
            margin: 20px 0 12px;
            line-height: 1.2;
            letter-spacing: -0.3px;
        }
        h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #4d3422;
            margin: 42px 0 16px;
            padding-bottom: 6px;
            border-bottom: 3px solid #e8d9cb;
        }
        h3 {
            font-size: 1.35rem;
            font-weight: 600;
            color: #5c3f2a;
            margin: 30px 0 12px;
        }
        h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #6b4c34;
            margin: 22px 0 8px;
        }
        p {
            margin: 0 0 18px;
            text-align: justify;
        }
        .content-section {
            margin: 28px 0;
        }
        .img-wrap {
            margin: 28px 0 32px;
            border-radius: 16px;
            overflow: hidden;
            background: #f3ede6;
            text-align: center;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
        }
        .img-wrap img {
            width: 100%;
            max-height: 420px;
            object-fit: cover;
        }
        .img-caption {
            padding: 8px 16px 14px;
            font-size: 0.85rem;
            color: #6d5c4b;
            background: #faf6f1;
        }
        .search-box {
            background: #f6f0e9;
            border-radius: 60px;
            padding: 4px 4px 4px 20px;
            display: flex;
            align-items: center;
            max-width: 480px;
            margin: 24px 0 32px;
            border: 1px solid #e0d3c6;
            transition: box-shadow 0.2s;
        }
        .search-box:focus-within {
            box-shadow: 0 0 0 3px rgba(183, 110, 46, 0.2);
        }
        .search-box input {
            flex: 1;
            border: none;
            background: transparent;
            padding: 12px 0;
            font-size: 1rem;
            outline: none;
            color: #2e2b28;
        }
        .search-box button {
            background: #b76e2e;
            border: none;
            color: #fff;
            padding: 10px 22px;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            font-size: 0.95rem;
        }
        .search-box button:hover {
            background: #9e5c26;
            transform: scale(0.97);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 40px 0 20px;
        }
        @media (max-width: 640px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .feedback-card {
            background: #faf6f1;
            border-radius: 20px;
            padding: 24px 22px;
            border: 1px solid #e8d9cb;
        }
        .feedback-card h3 {
            margin-top: 0;
            border-bottom: 2px solid #e8d9cb;
            padding-bottom: 10px;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            padding: 12px 14px;
            border: 1px solid #d9cbbc;
            border-radius: 12px;
            font-size: 0.95rem;
            background: #fff;
            transition: border 0.2s;
            font-family: inherit;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: #b76e2e;
            outline: none;
            box-shadow: 0 0 0 3px rgba(183, 110, 46, 0.1);
        }
        .feedback-card textarea {
            min-height: 80px;
            resize: vertical;
        }
        .feedback-card .btn-submit {
            background: #b76e2e;
            color: #fff;
            border: none;
            padding: 12px 20px;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            font-size: 1rem;
        }
        .feedback-card .btn-submit:hover {
            background: #9e5c26;
            transform: scale(0.98);
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.6rem;
            color: #d4a373;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            transition: color 0.15s, transform 0.1s;
            color: #ddd2c5;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #e8a75d;
            transform: scale(1.1);
        }
        friend-link {
            display: block;
            padding: 20px 0 8px;
            font-size: 0.95rem;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 6px 14px;
            background: #f3ede6;
            border-radius: 40px;
            transition: background 0.2s;
        }
        friend-link a:hover {
            background: #e8d9cb;
            text-decoration: none;
        }
        .footer {
            border-top: 2px solid #efe8de;
            padding: 28px 0 10px;
            margin-top: 40px;
            text-align: center;
            font-size: 0.9rem;
            color: #6d5c4b;
        }
        .footer .copyright {
            margin-top: 12px;
            font-size: 0.85rem;
            color: #8f7b68;
        }
        @media (max-width: 480px) {
            .container {
                padding: 12px 12px 24px;
                margin-top: 10px;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .search-box {
                max-width: 100%;
                flex-wrap: wrap;
                border-radius: 30px;
                padding: 4px 4px 4px 14px;
            }
            .search-box input {
                padding: 8px 0;
                font-size: 0.9rem;
            }
            .search-box button {
                padding: 8px 16px;
                font-size: 0.85rem;
            }
        }
        html {
            scroll-behavior: smooth;
        }
        .schema-hidden {
            display: none;
        }
