* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #fafaf8;
            color: #1e2a2f;
            line-height: 1.7;
            padding: 0 16px;
            -webkit-font-smoothing: antialiased;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.04);
            border-radius: 28px;
            padding: 24px 28px 40px;
            margin-top: 20px;
            margin-bottom: 20px;
        }
        header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding-bottom: 18px;
            border-bottom: 2px solid #f0ede8;
            position: relative;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            text-decoration: none;
            color: #c1440e;
            background: linear-gradient(135deg, #c1440e 0%, #e67e22 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            font-size: 2rem;
            -webkit-text-fill-color: #c1440e;
            color: #c1440e;
        }
        .my-logo:hover {
            opacity: 0.85;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .nav-list {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 20px;
            align-items: center;
        }
        .nav-list li a {
            text-decoration: none;
            color: #2d3e44;
            font-weight: 500;
            font-size: 0.98rem;
            padding: 6px 4px;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s, color 0.2s;
        }
        .nav-list li a:hover {
            border-bottom-color: #c1440e;
            color: #c1440e;
        }
        .nav-list li a i {
            margin-right: 6px;
            font-size: 0.85rem;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #1e2a2f;
            cursor: pointer;
            padding: 4px 8px;
            transition: color 0.2s;
        }
        .hamburger:hover {
            color: #c1440e;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px 10px;
            padding: 16px 0 8px;
            font-size: 0.88rem;
            color: #6f7b80;
        }
        .breadcrumb a {
            color: #c1440e;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #8f9a9e;
        }
        .breadcrumb i {
            font-size: 0.65rem;
            color: #b8c3c7;
        }
        main {
            padding: 20px 0;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.15;
            color: #1a2529;
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }
        h1 i {
            color: #c1440e;
            margin-right: 10px;
        }
        .subhead {
            font-size: 1.15rem;
            color: #4f6168;
            margin-bottom: 32px;
            border-left: 4px solid #e67e22;
            padding-left: 20px;
            background: #f8f6f2;
            border-radius: 0 12px 12px 0;
            padding: 14px 20px;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-top: 48px;
            margin-bottom: 16px;
            color: #1a2529;
            border-bottom: 3px solid #f0ede8;
            padding-bottom: 8px;
        }
        h2 i {
            color: #c1440e;
            margin-right: 10px;
        }
        h3 {
            font-size: 1.45rem;
            font-weight: 600;
            margin-top: 32px;
            margin-bottom: 12px;
            color: #2a3f46;
        }
        h3 i {
            color: #e67e22;
            margin-right: 8px;
            font-size: 1.2rem;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            margin-top: 22px;
            margin-bottom: 8px;
            color: #34535c;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.02rem;
            color: #2d3e44;
        }
        .highlight {
            background: #fef6ed;
            padding: 2px 8px;
            border-radius: 6px;
            font-weight: 600;
        }
        .stat-box {
            background: #f3f0eb;
            border-radius: 16px;
            padding: 24px 28px;
            margin: 24px 0;
            border-left: 6px solid #c1440e;
        }
        .stat-box ul {
            list-style: none;
            padding: 0;
        }
        .stat-box ul li {
            padding: 6px 0;
            font-size: 1rem;
        }
        .stat-box ul li i {
            color: #c1440e;
            width: 26px;
        }
        .img-wrapper {
            margin: 32px 0;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            background: #f3f0eb;
            text-align: center;
        }
        .img-wrapper img {
            width: 100%;
            height: auto;
            max-height: 480px;
            object-fit: cover;
            display: block;
        }
        .img-wrapper .caption {
            padding: 10px 16px;
            font-size: 0.9rem;
            color: #5f7178;
            background: #faf8f5;
            text-align: left;
        }
        .img-wrapper .caption i {
            margin-right: 6px;
            color: #c1440e;
        }
        .btn {
            display: inline-block;
            background: #c1440e;
            color: #fff;
            padding: 10px 28px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.98rem;
            transition: background 0.2s, transform 0.15s;
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            background: #a63a0c;
            transform: translateY(-2px);
        }
        .btn i {
            margin-right: 8px;
        }
        .search-section {
            background: #f6f3ee;
            border-radius: 20px;
            padding: 28px 30px;
            margin: 40px 0 24px;
        }
        .search-section h3 {
            margin-top: 0;
        }
        .search-form {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 12px;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border: 2px solid #ddd6cc;
            border-radius: 40px;
            font-size: 1rem;
            background: #fff;
            transition: border-color 0.2s;
        }
        .search-form input[type="text"]:focus {
            outline: none;
            border-color: #c1440e;
        }
        .search-form button {
            padding: 14px 32px;
            background: #c1440e;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #a63a0c;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 36px 0 20px;
        }
        .feedback-card {
            background: #f6f3ee;
            border-radius: 20px;
            padding: 24px 28px;
        }
        .feedback-card h3 {
            margin-top: 0;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            padding: 12px 16px;
            border: 2px solid #ddd6cc;
            border-radius: 12px;
            font-size: 0.98rem;
            background: #fff;
            transition: border-color 0.2s;
            font-family: inherit;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            outline: none;
            border-color: #c1440e;
        }
        .feedback-card textarea {
            min-height: 90px;
            resize: vertical;
        }
        .feedback-card button {
            align-self: flex-start;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #ccc6bc;
            cursor: pointer;
            transition: color 0.15s;
        }
        .star-rating label i {
            font-size: 1.8rem;
        }
        .star-rating input:checked~label {
            color: #f5b342;
        }
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #f5b342;
        }
        .related-links {
            background: #f3f0eb;
            border-radius: 20px;
            padding: 24px 28px;
            margin: 36px 0;
        }
        .related-links ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 10px 18px;
        }
        .related-links ul li a {
            color: #2d3e44;
            text-decoration: none;
            padding: 6px 14px;
            background: #fff;
            border-radius: 30px;
            font-size: 0.92rem;
            transition: background 0.2s, color 0.2s;
            display: inline-block;
            border: 1px solid #e3ddd4;
        }
        .related-links ul li a:hover {
            background: #c1440e;
            color: #fff;
            border-color: #c1440e;
        }
        .related-links ul li a i {
            margin-right: 6px;
            font-size: 0.75rem;
        }
        footer {
            margin-top: 48px;
            padding-top: 28px;
            border-top: 2px solid #f0ede8;
            font-size: 0.92rem;
            color: #4f6168;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 30px;
            margin-bottom: 24px;
        }
        .footer-grid h4 {
            margin-top: 0;
            font-weight: 700;
            color: #1a2529;
        }
        .footer-grid a {
            color: #4f6168;
            text-decoration: none;
        }
        .footer-grid a:hover {
            color: #c1440e;
        }
        friend-link {
            display: block;
            padding: 16px 0;
        }
        friend-link a {
            color: #2d3e44;
            text-decoration: none;
            padding: 4px 12px;
            background: #f3f0eb;
            border-radius: 20px;
            font-size: 0.9rem;
            display: inline-block;
            margin: 4px 6px 4px 0;
            transition: background 0.2s;
        }
        friend-link a:hover {
            background: #e67e22;
            color: #fff;
        }
        .copyright {
            text-align: center;
            padding: 18px 0 6px;
            font-size: 0.88rem;
            color: #7f8e94;
            border-top: 1px solid #f0ede8;
            margin-top: 10px;
        }
        .copyright i {
            color: #c1440e;
        }
        .last-updated {
            display: inline-block;
            background: #f3f0eb;
            padding: 4px 16px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #5f7178;
            margin-bottom: 20px;
        }
        .last-updated i {
            margin-right: 6px;
            color: #c1440e;
        }
        @media (max-width: 768px) {
            .container {
                padding: 16px 16px 30px;
                border-radius: 18px;
                margin-top: 12px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .hamburger {
                display: block;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #fafaf8;
                padding: 16px 0 10px;
                border-radius: 16px;
                gap: 6px;
            }
            .nav-list.active {
                display: flex;
            }
            .nav-list li a {
                display: block;
                padding: 10px 16px;
                border-bottom: none;
                border-radius: 8px;
            }
            .nav-list li a:hover {
                background: #f3f0eb;
                border-bottom: none;
            }
            .nav-wrapper {
                flex-wrap: wrap;
                width: 100%;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input[type="text"] {
                min-width: auto;
            }
            .stat-box {
                padding: 18px 18px;
            }
            .img-wrapper img {
                max-height: 240px;
            }
            .related-links ul {
                flex-direction: column;
                gap: 6px;
            }
            .breadcrumb {
                font-size: 0.78rem;
            }
            .my-logo {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.35rem;
            }
            .container {
                padding: 12px 12px 24px;
            }
        }
