* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #f5f7fa;
            color: #1e293b;
            line-height: 1.8;
            padding: 0 16px;
            scroll-behavior: smooth;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #fff;
            border-radius: 28px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
            overflow: hidden;
            padding: 0 24px 32px;
        }
        header {
            padding: 20px 0 12px;
            border-bottom: 2px solid #f0f2f5;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            position: relative;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f97316, #dc2626);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            -webkit-text-fill-color: #f97316;
            font-size: 2rem;
        }
        .my-logo:hover {
            opacity: 0.85;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 6px;
            flex-wrap: wrap;
        }
        .nav-list li a {
            text-decoration: none;
            padding: 8px 16px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.9rem;
            color: #334155;
            transition: 0.2s;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .nav-list li a:hover {
            background: #f97316;
            color: #fff;
            box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
        }
        .nav-list li a i {
            font-size: 0.8rem;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #1e293b;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 8px;
            transition: 0.2s;
        }
        .hamburger:hover {
            background: #f1f5f9;
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            padding: 14px 0 8px;
            font-size: 0.85rem;
            color: #64748b;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            align-items: center;
            width: 100%;
        }
        .breadcrumb a {
            color: #f97316;
            text-decoration: none;
            font-weight: 500;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #94a3b8;
        }
        main {
            padding: 24px 0 32px;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 0 0 12px;
            background: linear-gradient(135deg, #1e293b, #f97316);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            margin: 40px 0 16px;
            padding-bottom: 8px;
            border-bottom: 4px solid #f97316;
            display: inline-block;
            color: #0f172a;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin: 28px 0 12px;
            color: #1e293b;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 700;
            margin: 20px 0 8px;
            color: #334155;
        }
        p {
            margin-bottom: 16px;
            font-size: 1rem;
            color: #334155;
        }
        .last-updated {
            display: inline-block;
            background: #f1f5f9;
            padding: 6px 18px;
            border-radius: 40px;
            font-size: 0.8rem;
            color: #64748b;
            margin-bottom: 20px;
            font-weight: 500;
        }
        .last-updated i {
            margin-right: 6px;
            color: #f97316;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 20px;
            margin: 24px 0;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            display: block;
        }
        .img-caption {
            font-size: 0.85rem;
            color: #64748b;
            text-align: center;
            margin-top: -16px;
            margin-bottom: 24px;
            font-style: italic;
        }
        .highlight-box {
            background: linear-gradient(135deg, #fff7ed, #ffedd5);
            border-left: 6px solid #f97316;
            padding: 20px 24px;
            border-radius: 16px;
            margin: 24px 0;
        }
        .highlight-box strong {
            color: #c2410c;
        }
        .tip-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 20px;
            margin: 24px 0;
        }
        .tip-card {
            background: #fafafa;
            padding: 20px 20px 24px;
            border-radius: 20px;
            border: 1px solid #e2e8f0;
            transition: 0.25s;
        }
        .tip-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 28px rgba(249, 115, 22, 0.1);
            border-color: #f97316;
        }
        .tip-card i {
            font-size: 2rem;
            color: #f97316;
            margin-bottom: 12px;
        }
        .tip-card h4 {
            margin-top: 0;
        }
        ul,
        ol {
            padding-left: 24px;
            margin-bottom: 20px;
            color: #334155;
        }
        li {
            margin-bottom: 8px;
        }
        a {
            color: #f97316;
            text-decoration: none;
            font-weight: 500;
        }
        a:hover {
            text-decoration: underline;
        }
        .search-section {
            background: #f8fafc;
            padding: 28px 24px;
            border-radius: 24px;
            margin: 32px 0;
            border: 1px solid #e2e8f0;
        }
        .search-section form {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-section input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border: 2px solid #e2e8f0;
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: 0.2s;
        }
        .search-section input[type="text"]:focus {
            border-color: #f97316;
            box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
        }
        .search-section button {
            padding: 14px 32px;
            background: #f97316;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-section button:hover {
            background: #ea580c;
            transform: scale(1.02);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 32px 0;
        }
        .feedback-card {
            background: #f8fafc;
            padding: 24px 24px 28px;
            border-radius: 24px;
            border: 1px solid #e2e8f0;
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.3rem;
        }
        .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 #e2e8f0;
            border-radius: 12px;
            font-size: 0.95rem;
            outline: none;
            transition: 0.2s;
            font-family: inherit;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: #f97316;
            box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.06);
        }
        .feedback-card textarea {
            min-height: 90px;
            resize: vertical;
        }
        .feedback-card button {
            padding: 12px 24px;
            background: #f97316;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
            align-self: flex-start;
        }
        .feedback-card button:hover {
            background: #ea580c;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            gap: 4px;
            font-size: 1.8rem;
            color: #fbbf24;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            transition: 0.15s;
            color: #d1d5db;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #fbbf24;
        }
        footer {
            margin-top: 48px;
            padding-top: 28px;
            border-top: 2px solid #f0f2f5;
        }
        friend-link {
            display: block;
            padding: 18px 20px;
            background: #f8fafc;
            border-radius: 20px;
            margin-bottom: 20px;
            font-size: 0.95rem;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 4px 10px;
            background: #fff;
            border-radius: 20px;
            border: 1px solid #e2e8f0;
            font-size: 0.85rem;
            transition: 0.2s;
        }
        friend-link a:hover {
            background: #f97316;
            color: #fff;
            border-color: #f97316;
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            padding: 18px 0 8px;
            color: #94a3b8;
            font-size: 0.85rem;
        }
        .copyright strong {
            color: #475569;
        }
        @media (max-width: 780px) {
            .container {
                padding: 0 12px 24px;
                border-radius: 16px;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #fff;
                padding: 12px 0 20px;
                gap: 2px;
            }
            .nav-list li a {
                padding: 12px 16px;
                border-radius: 12px;
            }
            .hamburger {
                display: block;
            }
            #nav-toggle:checked~.nav-list {
                display: flex;
            }
            .nav-wrapper {
                flex-wrap: wrap;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .search-section form {
                flex-direction: column;
            }
            .search-section button {
                justify-content: center;
            }
            .star-rating {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 6px;
            }
            .container {
                padding: 0 8px 16px;
            }
            h1 {
                font-size: 1.5rem;
            }
            .tip-grid {
                grid-template-columns: 1fr;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
        }
        .section-anchor {
            scroll-margin-top: 80px;
        }
        .inline-link {
            font-weight: 600;
            color: #f97316;
        }
        .inline-link:hover {
            text-decoration: underline;
        }
