*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --primary: #1a3c2a;
            --primary-light: #2a5c3e;
            --secondary: #d4a017;
            --secondary-light: #f0c75e;
            --accent: #c0392b;
            --bg: #f7f3eb;
            --bg-card: #ffffff;
            --text: #1e1e1e;
            --text-light: #4a4a4a;
            --border: #d6cdb8;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            --radius: 12px;
            --transition: all 0.25s ease;
            --font: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            --max-width: 1200px;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font);
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            padding: 0 16px;
        }
        a {
            color: var(--primary-light);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover,
        a:focus {
            color: var(--secondary);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
        }
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 16px;
        }
        .site-header {
            background: var(--primary);
            color: #fff;
            padding: 12px 0 8px;
            border-radius: 0 0 var(--radius) var(--radius);
            margin-bottom: 20px;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
        }
        .header-inner {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 10px 20px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--secondary);
            letter-spacing: 1px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            font-size: 1.6rem;
            color: var(--secondary-light);
        }
        .my-logo:hover {
            color: #fff;
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            color: #ccc;
            display: block;
            line-height: 1;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid var(--secondary);
            color: var(--secondary);
            font-size: 1.6rem;
            padding: 4px 12px;
            border-radius: 8px;
            cursor: pointer;
            transition: var(--transition);
        }
        .nav-toggle:hover {
            background: var(--secondary);
            color: var(--primary);
        }
        .main-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 16px;
            align-items: center;
        }
        .main-nav a {
            color: #f0ede8;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 4px 0;
            border-bottom: 2px solid transparent;
            transition: var(--transition);
        }
        .main-nav a:hover,
        .main-nav a.active {
            color: var(--secondary);
            border-bottom-color: var(--secondary);
            text-decoration: none;
        }
        .breadcrumb {
            background: var(--bg-card);
            padding: 10px 18px;
            border-radius: var(--radius);
            margin: 12px 0 20px;
            box-shadow: var(--shadow);
            font-size: 0.9rem;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
        }
        .breadcrumb a {
            color: var(--primary-light);
        }
        .breadcrumb span {
            color: var(--text-light);
        }
        .breadcrumb .current {
            color: var(--primary);
            font-weight: 600;
        }
        section {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 28px 24px;
            margin-bottom: 28px;
            box-shadow: var(--shadow);
        }
        h1 {
            font-size: 2.4rem;
            color: var(--primary);
            margin-bottom: 12px;
            line-height: 1.2;
            font-weight: 800;
            letter-spacing: -0.5px;
        }
        h2 {
            font-size: 1.8rem;
            color: var(--primary);
            margin: 32px 0 16px;
            padding-bottom: 8px;
            border-bottom: 3px solid var(--secondary);
            font-weight: 700;
        }
        h3 {
            font-size: 1.35rem;
            color: var(--primary-light);
            margin: 28px 0 12px;
            font-weight: 600;
        }
        h4 {
            font-size: 1.1rem;
            color: var(--text);
            margin: 20px 0 8px;
            font-weight: 600;
        }
        p {
            margin-bottom: 16px;
            font-size: 1.02rem;
        }
        .lead {
            font-size: 1.2rem;
            color: var(--text-light);
            font-weight: 400;
            margin-bottom: 24px;
        }
        .highlight-box {
            background: #f0f7f0;
            border-left: 5px solid var(--secondary);
            padding: 16px 20px;
            border-radius: 0 var(--radius) var(--radius) 0;
            margin: 20px 0;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 20px;
        }
        .stat-card {
            background: var(--bg);
            padding: 20px;
            border-radius: var(--radius);
            text-align: center;
            border: 1px solid var(--border);
        }
        .stat-card .number {
            font-size: 2.4rem;
            font-weight: 800;
            color: var(--primary);
            display: block;
        }
        .stat-card .label {
            font-size: 0.95rem;
            color: var(--text-light);
        }
        .quote-block {
            font-style: italic;
            background: #faf6ee;
            padding: 20px 24px;
            border-radius: var(--radius);
            border-left: 4px solid var(--secondary);
            margin: 20px 0;
            font-size: 1.05rem;
        }
        .quote-block cite {
            display: block;
            margin-top: 8px;
            font-style: normal;
            font-weight: 600;
            color: var(--primary);
        }
        .btn {
            display: inline-block;
            padding: 10px 24px;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            font-size: 0.95rem;
        }
        .btn-primary {
            background: var(--primary);
            color: #fff;
        }
        .btn-primary:hover {
            background: var(--primary-light);
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(26, 60, 42, 0.3);
            text-decoration: none;
            color: #fff;
        }
        .btn-secondary {
            background: var(--secondary);
            color: var(--primary);
        }
        .btn-secondary:hover {
            background: var(--secondary-light);
            transform: translateY(-2px);
            text-decoration: none;
            color: var(--primary);
        }
        .img-wrapper {
            margin: 24px 0;
            border-radius: var(--radius);
            overflow: hidden;
            background: #eae5db;
            text-align: center;
        }
        .img-wrapper img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
        }
        .img-wrapper .caption {
            padding: 8px 16px;
            font-size: 0.9rem;
            color: var(--text-light);
            background: #f1ede6;
        }
        .faq-item {
            border-bottom: 1px solid var(--border);
            padding: 16px 0;
        }
        .faq-item:last-child {
            border-bottom: none;
        }
        .faq-item h4 {
            margin: 0 0 4px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-item h4 i {
            font-size: 1.2rem;
            color: var(--secondary);
            transition: var(--transition);
        }
        .faq-item p {
            margin: 6px 0 0;
            color: var(--text-light);
        }
        .form-group {
            margin-bottom: 16px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 4px;
            font-size: 0.95rem;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid var(--border);
            border-radius: 8px;
            font-family: var(--font);
            font-size: 1rem;
            background: var(--bg);
            transition: var(--transition);
        }
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(26, 60, 42, 0.15);
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #ddd;
            transition: var(--transition);
            cursor: pointer;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: var(--secondary);
        }
        .comment-list {
            margin-top: 20px;
        }
        .comment-item {
            background: var(--bg);
            padding: 14px 18px;
            border-radius: 8px;
            margin-bottom: 12px;
            border-left: 3px solid var(--secondary);
        }
        .comment-item .meta {
            font-size: 0.85rem;
            color: var(--text-light);
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 6px;
        }
        .comment-item .stars {
            color: var(--secondary);
        }
        friend-link {
            display: block;
            margin-top: 20px;
            padding: 16px 20px;
            background: var(--bg);
            border-radius: var(--radius);
            border: 1px solid var(--border);
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 4px 0;
        }
        .site-footer {
            background: var(--primary);
            color: #ddd;
            padding: 28px 20px;
            border-radius: var(--radius) var(--radius) 0 0;
            margin-top: 28px;
            font-size: 0.95rem;
        }
        .site-footer .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px;
            align-items: center;
        }
        .site-footer a {
            color: var(--secondary-light);
        }
        .site-footer a:hover {
            color: #fff;
        }
        .site-footer .copyright {
            font-size: 0.85rem;
            opacity: 0.8;
        }
        .last-updated {
            font-size: 0.85rem;
            color: var(--text-light);
            margin-bottom: 8px;
            display: block;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 8px;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: var(--primary-light);
                padding: 12px 16px;
                border-radius: var(--radius);
                margin-top: 8px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 8px 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                width: 100%;
            }
            .main-nav a:last-child {
                border-bottom: none;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            section {
                padding: 18px 14px;
            }
            .grid-2,
            .grid-3 {
                grid-template-columns: 1fr;
            }
            .breadcrumb {
                font-size: 0.8rem;
                padding: 8px 12px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .stat-card .number {
                font-size: 1.8rem;
            }
        }
        @media (min-width: 769px) {
            .nav-toggle {
                display: none !important;
            }
            .main-nav {
                display: flex !important;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.5rem;
            }
            .lead {
                font-size: 1rem;
            }
            .star-rating {
                font-size: 1.4rem;
            }
        }
        @media print {
            .site-header {
                position: static;
                background: #fff;
                color: #000;
            }
            .site-header a {
                color: #000;
            }
            .nav-toggle {
                display: none !important;
            }
            .main-nav {
                display: flex !important;
            }
            .site-footer {
                background: #fff;
                color: #000;
                border-top: 1px solid #ccc;
            }
        }
