*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            font-family: 'Segoe UI', 'Roboto', system-ui, -apple-system, sans-serif;
            background: #f5f7fc;
            color: #1a1a2e;
            line-height: 1.8;
            font-size: 16px;
            padding: 0 16px;
        }
        .wrapper {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.06);
            border-radius: 24px;
            padding: 20px 28px 40px;
            margin-top: 16px;
            margin-bottom: 40px;
        }
        a {
            color: #b8860b;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #8b6508;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 16px;
            display: block;
            margin: 28px 0;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 700;
            line-height: 1.3;
            color: #0a0a1a;
            margin-top: 1.8em;
            margin-bottom: 0.4em;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.4em;
            border-left: 6px solid #b8860b;
            padding-left: 20px;
        }
        h2 {
            font-size: 1.9rem;
            border-bottom: 2px solid #e8e0d0;
            padding-bottom: 8px;
            margin-top: 2.2em;
        }
        h3 {
            font-size: 1.4rem;
            margin-top: 1.6em;
            color: #2c2c44;
        }
        h4 {
            font-size: 1.15rem;
            margin-top: 1.2em;
            color: #3d3d5c;
        }
        p {
            margin: 1em 0;
            color: #2d2d44;
        }
        .highlight {
            background: #fef7e0;
            padding: 0.2em 0.5em;
            border-radius: 6px;
            font-weight: 600;
        }
        .emoji-lg {
            font-size: 1.4em;
            margin-right: 6px;
        }
        .btn {
            display: inline-block;
            background: #b8860b;
            color: #fff;
            padding: 10px 28px;
            border-radius: 40px;
            font-weight: 600;
            transition: background 0.25s, transform 0.15s;
            border: none;
            cursor: pointer;
            font-size: 0.95rem;
        }
        .btn:hover {
            background: #9a7209;
            transform: translateY(-2px);
            color: #fff;
            text-decoration: none;
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #b8860b;
            color: #b8860b;
        }
        .btn-outline:hover {
            background: #b8860b;
            color: #fff;
        }
        .header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0 16px;
            border-bottom: 2px solid #eee8e0;
            position: relative;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #b8860b, #d4a017);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            -webkit-text-fill-color: #b8860b;
            font-size: 1.8rem;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 2rem;
            color: #1a1a2e;
            cursor: pointer;
            padding: 4px 12px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #f0ece6;
        }
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 20px;
            align-items: center;
            list-style: none;
        }
        .nav-menu li a {
            font-weight: 500;
            padding: 6px 8px;
            border-radius: 8px;
            transition: background 0.2s;
            color: #1a1a2e;
        }
        .nav-menu li a:hover {
            background: #f0ece6;
            text-decoration: none;
        }
        .nav-menu li a i {
            margin-right: 6px;
            color: #b8860b;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 14px;
            padding: 12px 0 8px;
            font-size: 0.9rem;
            color: #6b6b80;
            list-style: none;
            border-bottom: 1px solid #f0ece6;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 14px;
            color: #b8860b;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #6b6b80;
        }
        .breadcrumb a:hover {
            color: #b8860b;
        }
        .breadcrumb .active {
            color: #1a1a2e;
            font-weight: 600;
        }
        .search-section {
            background: #f8f6f2;
            border-radius: 20px;
            padding: 28px 30px;
            margin: 32px 0 28px;
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            align-items: center;
            justify-content: space-between;
        }
        .search-section form {
            display: flex;
            flex: 2;
            min-width: 220px;
            gap: 8px;
        }
        .search-section input[type="text"] {
            flex: 1;
            padding: 12px 20px;
            border: 2px solid #ddd8ce;
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: border 0.25s;
            background: #fff;
        }
        .search-section input[type="text"]:focus {
            border-color: #b8860b;
        }
        .search-section .btn {
            border-radius: 40px;
            padding: 12px 28px;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 40px 0 20px;
        }
        .feedback-card {
            background: #faf8f4;
            border-radius: 20px;
            padding: 28px 30px;
            border: 1px solid #ede8de;
            transition: box-shadow 0.25s;
        }
        .feedback-card:hover {
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.04);
        }
        .feedback-card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 12px;
        }
        .feedback-card textarea,
        .feedback-card select,
        .feedback-card input {
            padding: 12px 16px;
            border: 2px solid #ddd8ce;
            border-radius: 14px;
            font-size: 0.95rem;
            outline: none;
            background: #fff;
            transition: border 0.2s;
            font-family: inherit;
        }
        .feedback-card textarea:focus,
        .feedback-card select:focus,
        .feedback-card input:focus {
            border-color: #b8860b;
        }
        .feedback-card textarea {
            min-height: 90px;
            resize: vertical;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            gap: 4px;
            justify-content: flex-end;
            font-size: 1.6rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #ddd;
            cursor: pointer;
            transition: color 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5b342;
        }
        .footer {
            margin-top: 50px;
            padding-top: 30px;
            border-top: 2px solid #eee8e0;
            text-align: center;
        }
        .footer friend-link {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px 28px;
            padding: 16px 0 20px;
            font-size: 0.95rem;
        }
        .footer friend-link a {
            color: #5a5a72;
            font-weight: 500;
        }
        .footer friend-link a:hover {
            color: #b8860b;
        }
        .footer .copyright {
            color: #7a7a92;
            font-size: 0.85rem;
            padding: 16px 0 6px;
            border-top: 1px solid #f0ece6;
            margin-top: 12px;
        }
        .footer .copyright strong {
            color: #4a4a62;
        }
        .last-update {
            display: inline-block;
            background: #f0ece6;
            padding: 4px 18px;
            border-radius: 40px;
            font-size: 0.8rem;
            color: #6b6b80;
            margin: 12px 0 4px;
        }
        @media (max-width: 780px) {
            .wrapper {
                padding: 12px 16px 30px;
                border-radius: 16px;
                margin-top: 8px;
            }
            h1 {
                font-size: 1.8rem;
                padding-left: 14px;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .header {
                padding: 8px 0;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                padding: 16px 0 8px;
                gap: 4px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                display: block;
                padding: 10px 12px;
                font-size: 1.05rem;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .search-section {
                flex-direction: column;
                padding: 20px 18px;
            }
            .search-section form {
                width: 100%;
            }
            .breadcrumb {
                font-size: 0.8rem;
                gap: 4px 10px;
            }
            .breadcrumb li+li::before {
                margin-right: 10px;
            }
            .footer friend-link {
                gap: 8px 16px;
                font-size: 0.85rem;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 8px;
            }
            .wrapper {
                padding: 8px 10px 24px;
            }
            h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            .feedback-card {
                padding: 18px 16px;
            }
            .star-rating {
                font-size: 1.3rem;
            }
        }
        .intro-box {
            background: linear-gradient(145deg, #faf6ee, #f5efe6);
            border-radius: 20px;
            padding: 28px 30px;
            margin: 24px 0 30px;
            border-left: 6px solid #b8860b;
        }
        .tip-box {
            background: #f0f7ee;
            border-radius: 16px;
            padding: 18px 24px;
            margin: 18px 0;
            border-left: 4px solid #4caf50;
        }
        .warning-box {
            background: #fef3e9;
            border-radius: 16px;
            padding: 18px 24px;
            margin: 18px 0;
            border-left: 4px solid #e67e22;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0;
            font-size: 0.95rem;
            border-radius: 12px;
            overflow: hidden;
        }
        th,
        td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid #ede8de;
        }
        th {
            background: #f0ece6;
            font-weight: 600;
            color: #1a1a2e;
        }
        tr:hover td {
            background: #faf8f4;
        }
        .interview-block {
            background: #f8f4ee;
            border-radius: 18px;
            padding: 24px 28px;
            margin: 24px 0;
            font-style: italic;
            position: relative;
        }
        .interview-block::before {
            content: "\201C";
            font-size: 4rem;
            color: #b8860b;
            opacity: 0.2;
            position: absolute;
            top: -4px;
            left: 12px;
            font-family: serif;
        }
        .interview-block strong {
            font-style: normal;
        }
        .link-list-inline {
            display: inline-flex;
            flex-wrap: wrap;
            gap: 8px 16px;
            list-style: none;
            margin: 8px 0;
        }
        .link-list-inline li a {
            background: #f5f1ea;
            padding: 3px 14px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 500;
            color: #5a5a72;
        }
        .link-list-inline li a:hover {
            background: #e8e0d0;
            text-decoration: none;
        }
