/* roulang page: index */
:root {
            --primary: #16a34a;
            --primary-dark: #15803d;
            --primary-light: #dcfce7;
            --accent: #f59e0b;
            --text-main: #0f172a;
            --text-weak: #64748b;
            --bg-body: #ffffff;
            --bg-gray: #f8fafc;
            --border: #e2e8f0;
            --radius-card: 16px;
            --radius-btn: 10px;
            --shadow-card: 0 4px 24px rgba(15, 23, 42, 0.08);
            --shadow-hover: 0 12px 32px rgba(15, 23, 42, 0.12);
            --transition: all 0.3s ease;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
            color: var(--text-main);
            line-height: 1.6;
            background: var(--bg-body);
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--primary);
            color: #fff;
            font-weight: 600;
            padding: 12px 28px;
            border-radius: var(--radius-btn);
            transition: var(--transition);
            box-shadow: 0 2px 8px rgba(22, 163, 74, 0.25);
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(22, 163, 74, 0.35);
        }

        .btn-primary:focus-visible,
        .btn-outline:focus-visible,
        .nav-link:focus-visible {
            outline: 3px solid #86efac;
            outline-offset: 2px;
        }

        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            color: #fff;
            font-weight: 600;
            padding: 12px 28px;
            border-radius: var(--radius-btn);
            border: 2px solid rgba(255, 255, 255, 0.7);
            transition: var(--transition);
        }

        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: #fff;
            transform: translateY(-2px);
        }

        .btn-white {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #fff;
            color: var(--primary-dark);
            font-weight: 600;
            padding: 12px 28px;
            border-radius: var(--radius-btn);
            transition: var(--transition);
            box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
        }

        .btn-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(15, 23, 42, 0.15);
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--primary-light);
            color: var(--primary-dark);
            font-size: 13px;
            font-weight: 600;
            padding: 4px 14px;
            border-radius: 20px;
            letter-spacing: 0.5px;
        }

        .badge-accent {
            background: #fef3c7;
            color: #b45309;
        }

        .badge-dark {
            background: rgba(255, 255, 255, 0.15);
            color: #fff;
        }

        .feature-card,
        .category-card,
        .news-card,
        .topic-card,
        .faq-item {
            background: #fff;
            border-radius: var(--radius-card);
            border: 1px solid var(--border);
            transition: var(--transition);
        }

        .feature-card:hover,
        .category-card:hover,
        .topic-card:hover,
        .news-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }

        .section-title {
            font-size: 2rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            line-height: 1.2;
            color: var(--text-main);
        }

        .section-subtitle {
            color: var(--text-weak);
            font-size: 1rem;
            margin-top: 12px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .stat-item {
            text-align: center;
            padding: 24px 12px;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: #fff;
            line-height: 1.1;
        }

        .stat-label {
            color: rgba(255, 255, 255, 0.75);
            font-size: 14px;
            margin-top: 8px;
        }

        .process-step {
            position: relative;
            padding: 28px 24px;
            background: #fff;
            border-radius: var(--radius-card);
            border: 1px solid var(--border);
            transition: var(--transition);
        }

        .process-step:hover {
            box-shadow: var(--shadow-hover);
        }

        .process-number {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary-light);
            line-height: 1;
        }

        .news-card {
            padding: 24px;
            border-left: 4px solid transparent;
        }

        .news-card:hover {
            border-left-color: var(--primary);
        }

        .news-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 13px;
            color: var(--text-weak);
        }

        .category-card {
            position: relative;
            overflow: hidden;
            display: block;
        }

        .category-card img {
            width: 100%;
            height: 260px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .category-card:hover img {
            transform: scale(1.05);
        }

        .category-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.3) 60%, transparent 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 24px;
        }

        .topic-card img {
            height: 180px;
            width: 100%;
            object-fit: cover;
            border-radius: var(--radius-card) var(--radius-card) 0 0;
        }

        .topic-body {
            padding: 20px;
        }

        .faq-item {
            padding: 0;
            overflow: hidden;
        }

        .faq-item summary {
            list-style: none;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 20px 24px;
            cursor: pointer;
            font-weight: 600;
            font-size: 15px;
            color: var(--text-main);
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item summary i {
            transition: transform 0.3s ease;
            color: var(--text-weak);
            flex-shrink: 0;
        }

        .faq-item[open] summary i {
            transform: rotate(180deg);
        }

        .faq-item .faq-answer {
            padding: 0 24px 20px;
            color: var(--text-weak);
            font-size: 14px;
            line-height: 1.7;
        }

        .footer-link {
            color: #94a3b8;
            transition: color 0.2s ease;
        }

        .footer-link:hover {
            color: #fff;
        }

        .hero-bg {
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.88) 0%, rgba(22, 163, 74, 0.72) 100%), url('/assets/images/backpic/back-1.png') center center / cover no-repeat;
            position: relative;
        }

        .cta-bg {
            background: linear-gradient(135deg, #15803d 0%, #16a34a 50%, #22c55e 100%);
            position: relative;
            overflow: hidden;
        }

        .cta-bg::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 220px;
            height: 220px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }

        .cta-bg::after {
            content: '';
            position: absolute;
            bottom: -40px;
            left: 30%;
            width: 160px;
            height: 160px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 50%;
        }

        .search-input {
            background: #f1f5f9;
            border: 1px solid transparent;
            border-radius: 30px;
            padding: 8px 40px 8px 16px;
            font-size: 14px;
            width: 220px;
            transition: var(--transition);
        }

        .search-input:focus {
            outline: none;
            background: #fff;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.12);
        }

        .nav-link {
            position: relative;
            font-weight: 500;
            transition: color 0.2s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -4px;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        .nav-link.active {
            color: var(--primary);
            font-weight: 600;
        }

        .mobile-menu {
            transition: max-height 0.3s ease;
            overflow: hidden;
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 1.5rem;
            }
            .stat-number {
                font-size: 1.8rem;
            }
            .hero-bg {
                padding: 60px 0;
            }
            .search-input {
                width: 160px;
            }
        }

        @media (max-width: 520px) {
            .container {
                padding: 0 16px;
            }
            .section-title {
                font-size: 1.3rem;
            }
            .btn-primary,
            .btn-outline,
            .btn-white {
                padding: 10px 20px;
                font-size: 14px;
            }
        }

/* roulang page: article */
:root {
            --primary: #e11d48;
            --secondary: #0f172a;
            --accent: #f59e0b;
            --surface: #f8fafc;
            --text-main: #1e293b;
            --text-muted: #64748b;
            --border: #e2e8f0;
            --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
            --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.08);
            --shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.12);
            --radius: 16px;
            --radius-sm: 10px;
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
            line-height: 1.7;
            color: var(--text-main);
            background: #ffffff;
            -webkit-font-smoothing: antialiased;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.2s ease;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button,
        input {
            font-family: inherit;
        }
        .container-site {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .header-site {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 50;
        }
        .nav-link {
            position: relative;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 8px 4px;
            transition: color 0.2s;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            border-radius: 2px;
            transition: width 0.25s ease;
        }
        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }
        .nav-link.active {
            color: var(--primary);
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--primary);
            color: #fff;
            padding: 10px 20px;
            border-radius: 999px;
            font-weight: 600;
            font-size: 0.9rem;
            border: 2px solid transparent;
            transition: all 0.25s ease;
            box-shadow: 0 2px 8px rgba(225, 29, 72, 0.25);
        }
        .btn-primary:hover {
            background: #be123c;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(225, 29, 72, 0.3);
        }
        .btn-primary:focus-visible {
            outline: 3px solid rgba(225, 29, 72, 0.4);
            outline-offset: 2px;
        }
        .btn-ghost {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            color: var(--text-main);
            padding: 10px 20px;
            border-radius: 999px;
            font-weight: 600;
            font-size: 0.9rem;
            border: 2px solid var(--border);
            transition: all 0.25s ease;
        }
        .btn-ghost:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: rgba(225, 29, 72, 0.04);
        }
        .search-input {
            background: var(--surface);
            border: 1.5px solid var(--border);
            border-radius: 999px;
            padding: 9px 16px 9px 40px;
            font-size: 0.875rem;
            width: 220px;
            transition: all 0.25s ease;
            outline: none;
        }
        .search-input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.15);
            background: #fff;
            width: 260px;
        }
        .article-body {
            font-size: 1.0625rem;
            line-height: 1.9;
            color: #334155;
        }
        .article-body h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #0f172a;
            margin: 36px 0 16px;
            padding-left: 14px;
            border-left: 4px solid var(--primary);
            border-radius: 2px;
        }
        .article-body h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: #0f172a;
            margin: 28px 0 12px;
        }
        .article-body p {
            margin-bottom: 20px;
        }
        .article-body ul,
        .article-body ol {
            margin: 0 0 20px 24px;
        }
        .article-body li {
            margin-bottom: 8px;
        }
        .article-body img {
            border-radius: var(--radius);
            margin: 24px 0;
            box-shadow: var(--shadow-md);
        }
        .article-body blockquote {
            border-left: 4px solid var(--primary);
            background: var(--surface);
            padding: 16px 20px;
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
            margin: 24px 0;
            font-style: italic;
            color: var(--text-muted);
        }
        .article-body a {
            color: var(--primary);
            text-decoration: underline;
            text-underline-offset: 3px;
        }
        .article-body a:hover {
            color: #be123c;
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card-hover:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
        }
        .badge-category {
            display: inline-block;
            background: rgba(225, 29, 72, 0.1);
            color: var(--primary);
            font-size: 0.75rem;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 999px;
            letter-spacing: 0.02em;
        }
        .footer-link {
            color: #94a3b8;
            transition: color 0.2s, transform 0.2s;
            display: inline-block;
        }
        .footer-link:hover {
            color: #fff;
            transform: translateX(4px);
        }
        .breadcrumb-item {
            color: #94a3b8;
            font-size: 0.875rem;
            transition: color 0.2s;
        }
        .breadcrumb-item:hover {
            color: var(--primary);
        }
        .breadcrumb-active {
            color: var(--text-main);
            font-weight: 500;
        }
        .faq-item {
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 20px 24px;
            background: #fff;
            transition: box-shadow 0.25s ease;
        }
        .faq-item:hover {
            box-shadow: var(--shadow-md);
        }
        @media (max-width: 1024px) {
            .container-site {
                padding: 0 20px;
            }
            .search-input {
                width: 180px;
            }
            .search-input:focus {
                width: 200px;
            }
        }
        @media (max-width: 768px) {
            .container-site {
                padding: 0 16px;
            }
            .search-wrap {
                display: none;
            }
            .nav-links {
                gap: 16px !important;
                margin: 0 12px !important;
            }
            .nav-link {
                font-size: 0.875rem;
            }
            .article-body {
                font-size: 1rem;
                line-height: 1.85;
            }
            .article-body h2 {
                font-size: 1.3rem;
            }
        }
        @media (max-width: 520px) {
            .nav-links {
                gap: 8px !important;
                margin: 0 8px !important;
            }
            .nav-link {
                font-size: 0.8125rem;
                padding: 6px 2px;
            }
            .nav-cta {
                padding-left: 8px;
                padding-right: 8px;
                font-size: 0.8125rem;
            }
            .btn-primary {
                padding: 8px 14px;
                font-size: 0.8125rem;
            }
        }

/* roulang page: category1 */
:root {
            --primary: #0e7490;
            --primary-dark: #0b5d74;
            --accent: #f59e0b;
            --ink: #0f172a;
            --muted: #64748b;
            --line: #e2e8f0;
            --bg-soft: #f8fafc;
            --radius: 1rem;
            --radius-lg: 1.25rem;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            margin: 0;
            font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, "Noto Sans SC", sans-serif;
            color: var(--ink);
            background: #ffffff;
            line-height: 1.75;
            font-size: 16px;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.25s;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input {
            font: inherit;
        }

        .nav-link {
            position: relative;
            font-weight: 500;
            padding: 0.35rem 0.15rem;
            transition: color 0.25s;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -4px;
            width: 0;
            height: 2px;
            background: var(--primary);
            border-radius: 2px;
            transition: width 0.3s ease;
        }

        .nav-link:hover {
            color: var(--primary);
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        .nav-link.active {
            color: var(--primary);
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            background: var(--primary);
            color: #fff;
            font-weight: 600;
            border: none;
            border-radius: 0.75rem;
            padding: 0.8rem 1.75rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 6px 18px rgba(14, 116, 144, 0.22);
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 12px 28px rgba(14, 116, 144, 0.28);
        }

        .btn-primary:active {
            transform: translateY(0);
        }

        .btn-outline {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            background: transparent;
            color: var(--ink);
            font-weight: 600;
            border: 1.5px solid rgba(15, 23, 42, 0.14);
            border-radius: 0.75rem;
            padding: 0.75rem 1.6rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-outline:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: rgba(14, 116, 144, 0.04);
            transform: translateY(-2px);
        }

        .section-head {
            text-align: center;
            max-width: 720px;
            margin: 0 auto 3rem;
        }

        .section-head .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            background: rgba(14, 116, 144, 0.08);
            color: var(--primary);
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.06em;
            padding: 0.35rem 1rem;
            border-radius: 999px;
            margin-bottom: 1rem;
            text-transform: uppercase;
        }

        .section-head h2 {
            font-size: 2rem;
            font-weight: 800;
            line-height: 1.3;
            letter-spacing: -0.01em;
            color: var(--ink);
            margin: 0.4rem 0 0.8rem;
        }

        .section-head p {
            font-size: 1.05rem;
            color: var(--muted);
            line-height: 1.7;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 0.25rem 0.75rem;
            border-radius: 999px;
            background: rgba(14, 116, 144, 0.1);
            color: var(--primary);
        }

        .badge-accent {
            background: rgba(245, 158, 11, 0.12);
            color: #b45309;
        }

        .card {
            background: #fff;
            border-radius: var(--radius-lg);
            border: 1px solid var(--line);
            box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
            transition: all 0.35s ease;
        }

        .card:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 40px rgba(14, 116, 144, 0.14);
            border-color: rgba(14, 116, 144, 0.25);
        }

        .footer-link {
            color: var(--muted);
            transition: color 0.25s;
            display: inline-block;
            position: relative;
        }

        .footer-link:hover {
            color: var(--primary);
        }

        .custom-container {
            max-width: 1280px;
            margin: 0 auto;
            padding-left: 1.25rem;
            padding-right: 1.25rem;
        }

        .page-hero {
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.88) 0%, rgba(14, 116, 144, 0.72) 100%);
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            top: -60%;
            right: -10%;
            width: 420px;
            height: 420px;
            background: radial-gradient(circle, rgba(245, 158, 11, 0.25) 0%, transparent 70%);
            border-radius: 50%;
        }

        .page-hero .hero-inner {
            position: relative;
            z-index: 2;
            padding-top: 5.5rem;
            padding-bottom: 5.5rem;
        }

        .topic-card-img {
            height: 220px;
            width: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        .topic-card:hover .topic-card-img {
            transform: scale(1.04);
        }

        .date-string {
            font-feature-settings: "tnum";
        }

        .step-box {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 2rem 1.5rem;
            background: #fff;
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            transition: all 0.3s ease;
        }

        .step-box:hover {
            box-shadow: 0 16px 35px rgba(14, 116, 144, 0.1);
            transform: translateY(-4px);
            border-color: rgba(14, 116, 144, 0.2);
        }

        .step-icon {
            width: 64px;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(14, 116, 144, 0.08);
            color: var(--primary);
            border-radius: 18px;
            font-size: 1.5rem;
            margin-bottom: 1.25rem;
        }

        .faq-item {
            background: #fff;
            border: 1px solid var(--line);
            border-radius: 1rem;
            padding: 1.5rem 1.75rem;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: rgba(14, 116, 144, 0.3);
            box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
        }

        .faq-q {
            font-weight: 700;
            font-size: 1.05rem;
            color: var(--ink);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
        }

        .faq-a {
            color: var(--muted);
            line-height: 1.75;
            margin-top: 0.75rem;
            font-size: 0.95rem;
        }

        .stat-block {
            background: #fff;
            border-radius: var(--radius-lg);
            border: 1px solid var(--line);
            padding: 2rem 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .stat-block:hover {
            box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
            transform: translateY(-3px);
        }

        .stat-num {
            font-size: 2.25rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1.2;
        }

        .stat-label {
            color: var(--muted);
            font-size: 0.9rem;
            margin-top: 0.4rem;
        }

        .input-search {
            border-radius: 0.75rem;
            border: 1px solid rgba(15, 23, 42, 0.12);
            padding: 0.5rem 1rem 0.5rem 2.35rem;
            font-size: 0.875rem;
            width: 180px;
            transition: all 0.3s ease;
            background: #f8fafc;
            outline: none;
        }

        .input-search:focus {
            border-color: var(--primary);
            background: #fff;
            box-shadow: 0 0 0 3px rgba(14, 116, 144, 0.12);
            width: 220px;
        }

        @media (max-width: 768px) {
            .input-search {
                width: 140px;
            }
            .input-search:focus {
                width: 160px;
            }
            .section-head h2 {
                font-size: 1.6rem;
            }
            .page-hero .hero-inner {
                padding-top: 3.5rem;
                padding-bottom: 3.5rem;
            }
        }

        @media (max-width: 640px) {
            .input-search {
                display: none;
            }
            .hero-title {
                font-size: 1.8rem;
                line-height: 1.35;
            }
            .stat-num {
                font-size: 1.8rem;
            }
        }

        .focus-outline:focus-visible {
            outline: 3px solid rgba(14, 116, 144, 0.4);
            outline-offset: 2px;
            border-radius: 4px;
        }
