        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #FFF8F0;
            color: #1e2a2f;
            line-height: 1.7;
            padding: 0 16px;
        }
        a {
            color: #c96b2e;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #a34e1f;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            border-radius: 28px 28px 0 0;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            padding: 0 24px 40px;
        }
        .header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 18px 0 12px;
            border-bottom: 3px solid #FF9933;
            position: relative;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #FF9933, #138808);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            -webkit-text-fill-color: #FF9933;
            color: #FF9933;
            font-size: 1.6rem;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .header-right {
            display: flex;
            align-items: center;
            gap: 14px;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 6px;
            flex-wrap: wrap;
        }
        .nav-list li a {
            padding: 6px 14px;
            border-radius: 40px;
            font-size: 0.85rem;
            font-weight: 600;
            color: #1e2a2f;
            background: #f5efe8;
            transition: all 0.2s;
            display: inline-block;
        }
        .nav-list li a:hover {
            background: #FF9933;
            color: #fff;
            text-decoration: none;
            transform: translateY(-1px);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #1e2a2f;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #f0e6dc;
        }
        .breadcrumb {
            padding: 14px 0 10px;
            font-size: 0.85rem;
            color: #6f7b7f;
            display: flex;
            flex-wrap: wrap;
            gap: 4px 8px;
        }
        .breadcrumb a {
            color: #c96b2e;
        }
        .breadcrumb span.sep {
            color: #bbb;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 24px 0 16px;
            color: #1a2a1f;
        }
        h1 i {
            color: #FF9933;
        }
        h2 {
            font-size: 1.8rem;
            font-weight: 700;
            margin: 48px 0 16px;
            padding-bottom: 8px;
            border-bottom: 3px solid #FF9933;
            color: #1f3a2a;
        }
        h3 {
            font-size: 1.35rem;
            font-weight: 600;
            margin: 32px 0 12px;
            color: #2b4635;
        }
        h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin: 24px 0 8px;
            color: #3d5a4a;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.02rem;
            color: #2c3a3f;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 400;
            color: #3d4f4a;
            border-left: 4px solid #FF9933;
            padding-left: 20px;
            margin-bottom: 28px;
        }
        .highlight {
            background: #fff3e0;
            padding: 2px 8px;
            border-radius: 4px;
            font-weight: 600;
        }
        .badge {
            display: inline-block;
            background: #138808;
            color: #fff;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 2px 12px;
            border-radius: 40px;
            letter-spacing: 0.3px;
            text-transform: uppercase;
        }
        .badge.orange {
            background: #FF9933;
        }
        .badge.blue {
            background: #1a5276;
        }
        .feature-img {
            border-radius: 20px;
            margin: 28px 0 24px;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .img-caption {
            font-size: 0.85rem;
            color: #6f7b7f;
            margin-top: -16px;
            margin-bottom: 28px;
            font-style: italic;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
            margin: 28px 0;
        }
        .card {
            background: #faf6f1;
            border-radius: 18px;
            padding: 24px 20px;
            transition: transform 0.2s, box-shadow 0.2s;
            border: 1px solid #efe6dc;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
        }
        .card i {
            font-size: 2rem;
            color: #FF9933;
            margin-bottom: 12px;
        }
        .card h4 {
            margin-top: 0;
        }
        .stat-row {
            display: flex;
            flex-wrap: wrap;
            gap: 16px 32px;
            background: #f3ede7;
            border-radius: 18px;
            padding: 24px 28px;
            margin: 28px 0;
            justify-content: space-around;
        }
        .stat-item {
            text-align: center;
            flex: 1 0 100px;
        }
        .stat-item .num {
            font-size: 2.2rem;
            font-weight: 800;
            color: #FF9933;
            display: block;
            line-height: 1.2;
        }
        .stat-item .label {
            font-size: 0.85rem;
            color: #5b6b6f;
            text-transform: uppercase;
            letter-spacing: 0.4px;
        }
        .interview-block {
            background: #edf7ee;
            border-radius: 20px;
            padding: 28px 30px;
            margin: 32px 0;
            border-left: 5px solid #138808;
            font-style: normal;
        }
        .interview-block .speaker {
            font-weight: 700;
            color: #1f3a2a;
            font-size: 1.05rem;
        }
        .interview-block .quote {
            font-size: 1.1rem;
            line-height: 1.7;
            margin: 8px 0 4px;
        }
        .interview-block .context {
            font-size: 0.9rem;
            color: #5b6b6f;
        }
        .form-section {
            background: #faf6f1;
            border-radius: 20px;
            padding: 28px 30px;
            margin: 40px 0 28px;
            border: 1px solid #efe6dc;
        }
        .form-section h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 18px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 4px;
            color: #2b4635;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e0d6cc;
            border-radius: 12px;
            font-size: 1rem;
            background: #fff;
            transition: border 0.2s;
            font-family: inherit;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #FF9933;
            outline: none;
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            background: #FF9933;
            color: #fff;
            border: none;
            padding: 12px 32px;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn:hover {
            background: #e07d2a;
            transform: translateY(-2px);
        }
        .btn.green {
            background: #138808;
        }
        .btn.green:hover {
            background: #0f6e06;
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            direction: rtl;
            justify-content: flex-end;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            transition: color 0.15s;
            color: #ddd;
            cursor: pointer;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #FF9933;
        }
        .footer {
            margin-top: 48px;
            padding-top: 28px;
            border-top: 3px solid #FF9933;
        }
        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            gap: 24px 40px;
            justify-content: space-between;
            align-items: flex-start;
        }
        friend-link {
            display: block;
            background: #f5efe8;
            border-radius: 16px;
            padding: 20px 24px;
            margin: 16px 0 8px;
            font-size: 0.95rem;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 16px 4px 0;
            padding: 4px 0;
            font-weight: 500;
        }
        friend-link a:hover {
            color: #138808;
        }
        .copyright {
            font-size: 0.85rem;
            color: #6f7b7f;
            text-align: center;
            padding: 20px 0 8px;
            border-top: 1px solid #e8e0d8;
            margin-top: 20px;
        }
        .copyright strong {
            color: #2b4635;
        }
        .last-updated {
            background: #f3ede7;
            display: inline-block;
            padding: 6px 18px;
            border-radius: 40px;
            font-size: 0.8rem;
            color: #5b6b6f;
            margin-bottom: 12px;
        }
        @media (max-width: 820px) {
            .container {
                padding: 0 16px 32px;
                border-radius: 16px 16px 0 0;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #fff8f0;
                border-radius: 16px;
                padding: 12px 8px;
                box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                z-index: 99;
                border: 1px solid #efe6dc;
            }
            .nav-list.open {
                display: flex;
            }
            .nav-list li a {
                padding: 10px 16px;
                font-size: 0.95rem;
                width: 100%;
            }
            .hamburger {
                display: block;
            }
            .header {
                flex-wrap: wrap;
            }
            .header-right {
                width: auto;
            }
            .stat-row {
                padding: 16px 12px;
                gap: 12px;
            }
            .stat-item .num {
                font-size: 1.6rem;
            }
            .interview-block {
                padding: 20px 18px;
            }
            .form-section {
                padding: 20px 18px;
            }
            .card-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 8px;
            }
            .container {
                padding: 0 12px 28px;
            }
            h1 {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo i {
                font-size: 1.2rem;
            }
            .btn {
                padding: 10px 22px;
                font-size: 0.9rem;
                width: 100%;
                justify-content: center;
            }
            .star-rating {
                font-size: 1.4rem;
            }
            friend-link a {
                display: block;
                margin: 6px 0;
            }
        }
        .flex-between {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
        }
        .mt-8 {
            margin-top: 8px;
        }
        .mb-8 {
            margin-bottom: 8px;
        }
        .gap-4 {
            gap: 4px;
        }
        .text-center {
            text-align: center;
        }
        .hidden {
            display: none !important;
        }
        .inline-icon {
            margin-right: 6px;
        }
