        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #faf8f5;
            color: #1e1e2a;
            line-height: 1.75;
            padding: 0 1rem;
        }
        a {
            color: #b45309;
            text-decoration: none;
            transition: all 0.2s ease;
        }
        a:hover,
        a:focus {
            color: #7a2e0e;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin: 1rem 0;
        }
        li {
            margin-bottom: 0.4rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        header {
            background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
            color: #f1f5f9;
            padding: 1.2rem 0;
            border-radius: 0 0 24px 24px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
            position: relative;
            z-index: 10;
        }
        .header-inner {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f59e0b, #d97706);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo i {
            -webkit-text-fill-color: #f59e0b;
            font-size: 2.2rem;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f59e0b;
            color: #f59e0b;
            font-size: 1.6rem;
            padding: 0.3rem 0.8rem;
            border-radius: 10px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #f59e0b;
            color: #0f172a;
        }
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            gap: 0.2rem 1.2rem;
            align-items: center;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .nav-menu li a {
            color: #e2e8f0;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 0.3rem 0;
            border-bottom: 2px solid transparent;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .nav-menu li a:hover {
            color: #f59e0b;
            border-bottom-color: #f59e0b;
            text-decoration: none;
        }
        .breadcrumb-wrap {
            background: #f1f5f9;
            padding: 0.6rem 1.2rem;
            border-radius: 40px;
            margin: 1.2rem 0 0.8rem 0;
            display: inline-block;
            font-size: 0.85rem;
        }
        .breadcrumb-wrap i {
            margin: 0 0.4rem;
            color: #b45309;
            font-size: 0.7rem;
        }
        .breadcrumb-wrap a {
            color: #334155;
        }
        .breadcrumb-wrap span {
            color: #b45309;
            font-weight: 600;
        }
        main {
            padding: 2rem 0 3rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            color: #0f172a;
            margin: 0 0 0.6rem 0;
        }
        h1 i {
            color: #d97706;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #1e293b;
            margin: 2.2rem 0 1rem 0;
            border-left: 6px solid #d97706;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #334155;
            margin: 1.8rem 0 0.8rem 0;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #475569;
            margin: 1.2rem 0 0.5rem 0;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .lead {
            font-size: 1.2rem;
            color: #334155;
            font-weight: 400;
            line-height: 1.8;
        }
        .highlight-box {
            background: #fffbeb;
            border-left: 6px solid #d97706;
            padding: 1.5rem 2rem;
            border-radius: 16px;
            margin: 1.8rem 0;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.2rem;
            margin: 1.5rem 0;
        }
        .stat-card {
            background: #ffffff;
            padding: 1.2rem;
            border-radius: 16px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            text-align: center;
            border: 1px solid #f1f5f9;
            transition: transform 0.2s;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
        }
        .stat-card .num {
            font-size: 2.2rem;
            font-weight: 800;
            color: #d97706;
            display: block;
        }
        .stat-card .label {
            font-size: 0.9rem;
            color: #64748b;
            font-weight: 500;
        }
        .featured-img-wrap {
            margin: 2rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }
        .featured-img-wrap img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .img-caption {
            font-size: 0.85rem;
            color: #64748b;
            padding: 0.6rem 1rem 0.8rem;
            background: #f8fafc;
            text-align: center;
            font-style: italic;
        }
        .sidebar {
            background: #ffffff;
            border-radius: 24px;
            padding: 1.8rem 1.5rem;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
            border: 1px solid #e2e8f0;
            position: sticky;
            top: 1.5rem;
            height: fit-content;
        }
        .sidebar h3 {
            font-size: 1.3rem;
            margin-top: 0;
            border-bottom: 3px solid #f59e0b;
            padding-bottom: 0.5rem;
            display: inline-block;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
            margin: 1rem 0 0 0;
        }
        .sidebar ul li {
            padding: 0.5rem 0;
            border-bottom: 1px solid #f1f5f9;
        }
        .sidebar ul li a {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-weight: 500;
        }
        .sidebar ul li a i {
            color: #d97706;
            width: 1.2rem;
        }
        .form-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 1.8rem 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            border: 1px solid #e2e8f0;
            margin: 2rem 0;
        }
        .form-card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: #1e293b;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            transition: border 0.2s;
            background: #faf8f5;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #d97706;
            outline: none;
            background: #fff;
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: #d97706;
            color: #fff;
            font-weight: 700;
            padding: 0.8rem 2rem;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.25s;
        }
        .btn:hover {
            background: #b45309;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(185, 85, 9, 0.3);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #d97706;
            color: #d97706;
        }
        .btn-outline:hover {
            background: #d97706;
            color: #fff;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
            font-size: 1.8rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #cbd5e1;
            cursor: pointer;
            transition: color 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f59e0b;
        }
        footer {
            background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
            color: #cbd5e1;
            padding: 2.5rem 0 1.5rem;
            border-radius: 24px 24px 0 0;
            margin-top: 3rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }
        .footer-grid h4 {
            color: #f59e0b;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }
        .footer-grid a {
            color: #cbd5e1;
            display: block;
            padding: 0.2rem 0;
        }
        .footer-grid a:hover {
            color: #f59e0b;
        }
        .friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.8rem;
            margin-top: 0.5rem;
        }
        .friend-link a {
            color: #e2e8f0;
            font-weight: 500;
            padding: 0.2rem 0;
            border-bottom: 1px solid transparent;
        }
        .friend-link a:hover {
            border-bottom-color: #f59e0b;
            color: #f59e0b;
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #334155;
            font-size: 0.9rem;
            color: #94a3b8;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                padding: 1rem 0 0.5rem;
                gap: 0.6rem;
            }
            .nav-menu.open {
                display: flex;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .form-card {
                padding: 1.2rem;
            }
            .sidebar {
                position: static;
                margin-top: 2rem;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
            .breadcrumb-wrap {
                font-size: 0.75rem;
                padding: 0.4rem 1rem;
            }
        }
        @media (max-width: 480px) {
            .stat-grid {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 1.6rem;
            }
            .lead {
                font-size: 1rem;
            }
        }
        .text-muted {
            color: #64748b;
        }
        .flex-between {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .gap-1 {
            gap: 1rem;
        }
        .tag {
            background: #fef3c7;
            color: #92400e;
            padding: 0.15rem 0.8rem;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 600;
            display: inline-block;
        }
        .last-updated {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #64748b;
            font-size: 0.9rem;
            margin: 0.5rem 0 1.5rem;
        }
