/* roulang page: index */
:root {
            --primary: #2F8F46;
            --primary-dark: #1E6B32;
            --primary-light: #4CB96B;
            --accent: #F2C14E;
            --bg: #F7F9F7;
            --card: #FFFFFF;
            --text: #1B2A20;
            --text-secondary: #4A6352;
            --text-muted: #6B7F70;
            --footer-bg: #14291A;
            --footer-text: #A0B5A4;
            --border: #E5EDE6;
            --radius-lg: 1rem;
            --radius-xl: 1.5rem;
            --shadow: 0 2px 12px rgba(31, 95, 58, 0.08);
            --shadow-hover: 0 8px 28px rgba(31, 95, 58, 0.15);
        }
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }
        img {
            max-width: 100%;
            display: block;
        }
        a {
            color: inherit;
            text-decoration: none;
        }
        button {
            font-family: inherit;
            cursor: pointer;
            background: none;
            border: none;
        }
        input,
        textarea {
            font-family: inherit;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .section {
            padding: 4.5rem 0;
        }
        @media(min-width:768px) {
            .section {
                padding: 5.5rem 0;
            }
        }
        .section-header {
            text-align: center;
            max-width: 720px;
            margin: 0 auto 3rem;
        }
        .section-header .eyebrow {
            display: inline-block;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--primary);
            background: #E8F3E9;
            border-radius: 999px;
            padding: 0.3rem 1rem;
            margin-bottom: 1rem;
        }
        .section-header h2 {
            font-size: 2rem;
            line-height: 1.2;
            color: var(--text);
            font-weight: 800;
            letter-spacing: -0.02em;
            margin-bottom: 0.75rem;
        }
        .section-header p {
            font-size: 1rem;
            color: var(--text-secondary);
            line-height: 1.7;
        }
        @media(min-width:768px) {
            .section-header h2 {
                font-size: 2.5rem;
            }
        }
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            font-weight: 600;
            border-radius: 0.5rem;
            transition: all 0.2s ease;
            font-size: 0.95rem;
            padding: 0.7rem 1.5rem;
            border: 2px solid transparent;
            line-height: 1.4;
        }
        .btn:focus-visible {
            outline: none;
            box-shadow: 0 0 0 3px rgba(47, 143, 70, 0.4);
        }
        .btn-primary {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
        }
        .btn-primary:hover {
            background: var(--primary-dark);
            border-color: var(--primary-dark);
        }
        .btn-primary:active {
            background: #185A28;
            border-color: #185A28;
        }
        .btn-outline {
            background: transparent;
            color: var(--primary);
            border-color: var(--primary);
        }
        .btn-outline:hover {
            background: rgba(47, 143, 70, 0.06);
        }
        .btn-white {
            background: #fff;
            color: var(--primary);
            border-color: #fff;
        }
        .btn-white:hover {
            background: var(--accent);
            border-color: var(--accent);
            color: var(--text);
        }
        .btn-lg {
            padding: 0.85rem 2rem;
            font-size: 1rem;
        }
        .btn-sm {
            padding: 0.45rem 1rem;
            font-size: 0.85rem;
        }
        .badge {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 700;
            border-radius: 999px;
            padding: 0.2rem 0.7rem;
        }
        .badge-accent {
            background: var(--accent);
            color: var(--text);
        }
        .badge-green {
            background: #E8F3E9;
            color: var(--primary-dark);
        }
        /* Header */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 50;
            background: rgba(255, 255, 255, 0.88);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 64px;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-shrink: 0;
        }
        .logo-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 8px rgba(47, 143, 70, 0.3);
        }
        .logo-icon svg {
            width: 14px;
            height: 14px;
            fill: #fff;
            margin-left: 2px;
        }
        .logo-text {
            font-size: 1.25rem;
            font-weight: 700;
            letter-spacing: -0.01em;
            white-space: nowrap;
        }
        .logo-text .green {
            color: var(--primary);
        }
        .logo-text .dark {
            color: var(--text);
        }
        .nav-links {
            display: none;
            align-items: center;
            gap: 1.5rem;
        }
        .nav-links a {
            font-size: 0.9rem;
            color: var(--text-secondary);
            font-weight: 500;
            position: relative;
            padding: 0.25rem 0;
            transition: color 0.2s;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 100%;
            height: 2px;
            background: var(--primary);
            border-radius: 2px;
            transform: scaleX(0);
            transition: transform 0.25s ease;
        }
        .nav-links a:hover {
            color: var(--primary);
        }
        .nav-links a:hover::after {
            transform: scaleX(1);
        }
        .nav-links a.active {
            color: var(--primary);
            font-weight: 600;
        }
        .nav-links a.active::after {
            transform: scaleX(1);
        }
        .header-right {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        .search-box {
            display: none;
            align-items: center;
            gap: 0.4rem;
            background: #F0F4F0;
            border-radius: 999px;
            padding: 0.4rem 1rem;
            width: 180px;
            transition: all 0.25s;
        }
        .search-box:focus-within {
            background: #fff;
            box-shadow: 0 0 0 2px rgba(47, 143, 70, 0.35);
        }
        .search-box svg {
            width: 14px;
            height: 14px;
            stroke: var(--text-muted);
            flex-shrink: 0;
        }
        .search-box input {
            border: none;
            background: transparent;
            outline: none;
            font-size: 0.85rem;
            color: var(--text);
            width: 100%;
        }
        .search-box input::placeholder {
            color: var(--text-muted);
        }
        .btn-ghost {
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--text-secondary);
            padding: 0.4rem 0.75rem;
            border-radius: 0.4rem;
            transition: color 0.2s;
        }
        .btn-ghost:hover {
            color: var(--primary);
        }
        .header-cta {
            font-size: 0.85rem;
            font-weight: 600;
            color: #fff;
            background: var(--primary);
            padding: 0.45rem 1.1rem;
            border-radius: 0.5rem;
            transition: background 0.2s;
        }
        .header-cta:hover {
            background: var(--primary-dark);
        }
        .mobile-toggle {
            display: flex;
            width: 40px;
            height: 40px;
            border-radius: 0.5rem;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--border);
            background: #fff;
        }
        .mobile-toggle svg {
            width: 20px;
            height: 20px;
        }
        .mobile-menu {
            display: none;
            background: #fff;
            border-top: 1px solid var(--border);
            padding: 0.75rem 1.25rem 1rem;
        }
        .mobile-menu.open {
            display: block;
        }
        .mobile-menu a {
            display: block;
            padding: 0.65rem 0.25rem;
            font-size: 0.95rem;
            color: var(--text-secondary);
            border-bottom: 1px solid #F0F4F0;
        }
        .mobile-menu a:last-child {
            border-bottom: none;
        }
        .mobile-menu a.active {
            color: var(--primary);
            font-weight: 600;
        }
        .mobile-search {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            background: #F0F4F0;
            border-radius: 0.5rem;
            padding: 0.5rem 0.75rem;
            margin-bottom: 0.5rem;
        }
        .mobile-search input {
            border: none;
            background: transparent;
            outline: none;
            font-size: 0.9rem;
            width: 100%;
        }
        @media(min-width:1024px) {
            .nav-links {
                display: flex;
            }
            .search-box {
                display: flex;
                width: 200px;
            }
            .mobile-toggle {
                display: none;
            }
        }
        @media(min-width:1200px) {
            .search-box {
                width: 240px;
            }
        }
        /* Hero */
        .hero {
            position: relative;
            background: var(--bg);
            overflow: hidden;
            min-height: 600px;
            display: flex;
            align-items: center;
        }
        .hero-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            z-index: 1;
        }
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(20, 41, 26, 0.88) 0%, rgba(30, 107, 50, 0.75) 55%, rgba(47, 143, 70, 0.55) 100%);
            z-index: 2;
        }
        .hero-content {
            position: relative;
            z-index: 3;
            padding: 4rem 0 5rem;
            color: #fff;
            max-width: 760px;
        }
        .hero-tag {
            display: inline-block;
            background: rgba(242, 193, 78, 0.18);
            border: 1px solid rgba(242, 193, 78, 0.4);
            color: var(--accent);
            font-size: 0.8rem;
            font-weight: 600;
            border-radius: 999px;
            padding: 0.3rem 1rem;
            margin-bottom: 1.25rem;
            letter-spacing: 0.02em;
        }
        .hero h1 {
            font-size: 2.25rem;
            line-height: 1.15;
            font-weight: 800;
            letter-spacing: -0.02em;
            margin-bottom: 1.25rem;
        }
        .hero h1 .highlight {
            color: var(--accent);
        }
        .hero p {
            font-size: 1.05rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 1.75rem;
            max-width: 620px;
        }
        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            align-items: center;
            margin-bottom: 2.5rem;
        }
        .hero .btn-outline {
            color: #fff;
            border-color: rgba(255, 255, 255, 0.6);
        }
        .hero .btn-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: #fff;
        }
        .hero-play-btn {
            width: 54px;
            height: 54px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.92);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            transition: transform 0.2s, background 0.2s;
        }
        .hero-play-btn:hover {
            transform: scale(1.08);
            background: var(--accent);
        }
        .hero-play-btn svg {
            width: 18px;
            height: 18px;
            fill: var(--primary);
            margin-left: 3px;
        }
        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            max-width: 460px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 1.5rem;
        }
        .hero-stats .stat strong {
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--accent);
            display: block;
            line-height: 1.1;
        }
        .hero-stats .stat span {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.75);
        }
        @media(min-width:768px) {
            .hero h1 {
                font-size: 3rem;
            }
            .hero {
                min-height: 650px;
            }
            .hero-content {
                padding: 5rem 0 6rem;
            }
        }
        @media(min-width:1024px) {
            .hero h1 {
                font-size: 3.5rem;
            }
        }
        /* Track */
        .track-section {
            background: var(--bg);
        }
        .track-scroll {
            display: flex;
            gap: 1rem;
            overflow-x: auto;
            padding-bottom: 1rem;
            scrollbar-width: thin;
            scrollbar-color: var(--primary-light) #e5ede6;
        }
        .track-scroll::-webkit-scrollbar {
            height: 6px;
        }
        .track-scroll::-webkit-scrollbar-track {
            background: #e5ede6;
            border-radius: 12px;
        }
        .track-scroll::-webkit-scrollbar-thumb {
            background: var(--primary-light);
            border-radius: 12px;
        }
        .track-card {
            flex: 0 0 200px;
            background: #fff;
            border-radius: 0.75rem;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform 0.25s, box-shadow 0.25s;
        }
        .track-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }
        .track-cover {
            position: relative;
            aspect-ratio: 16 / 9;
            overflow: hidden;
        }
        .track-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s;
        }
        .track-card:hover .track-cover img {
            transform: scale(1.05);
        }
        .track-cover .duration {
            position: absolute;
            bottom: 0.5rem;
            right: 0.5rem;
            background: rgba(0, 0, 0, 0.7);
            color: #fff;
            font-size: 0.7rem;
            border-radius: 0.25rem;
            padding: 0.1rem 0.4rem;
        }
        .track-info {
            padding: 0.75rem;
        }
        .track-info h3 {
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--text);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            margin-bottom: 0.2rem;
        }
        .track-info span {
            font-size: 0.75rem;
            color: var(--text-muted);
        }
        @media(min-width:768px) {
            .track-card {
                flex: 0 0 240px;
            }
        }
        /* Categories */
        .categories-section {
            background: #fff;
        }
        .category-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.25rem;
        }
        .category-card {
            position: relative;
            border-radius: 1rem;
            overflow: hidden;
            background: #fff;
            box-shadow: var(--shadow);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .category-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }
        .category-cover {
            position: relative;
            aspect-ratio: 16 / 10;
            overflow: hidden;
        }
        .category-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .category-card:hover .category-cover img {
            transform: scale(1.06);
        }
        .category-cover .hot-badge {
            position: absolute;
            top: 0.75rem;
            left: 0.75rem;
            background: var(--accent);
            color: var(--text);
            font-size: 0.7rem;
            font-weight: 700;
            border-radius: 999px;
            padding: 0.2rem 0.6rem;
        }
        .category-body {
            padding: 1rem;
        }
        .category-body h3 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 0.15rem;
        }
        .category-body p {
            font-size: 0.8rem;
            color: var(--text-muted);
        }
        @media(min-width:768px) {
            .category-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 1.5rem;
            }
        }
        /* Stats */
        .stats-section {
            background: var(--bg);
        }
        .stats-inner {
            background: var(--primary-dark);
            border-radius: 1.5rem;
            padding: 2.5rem 1.5rem;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem 2rem;
            text-align: center;
        }
        .stats-grid .stat-item .icon {
            margin-bottom: 0.5rem;
            display: inline-flex;
        }
        .stats-grid .stat-item .icon svg {
            width: 28px;
            height: 28px;
            stroke: var(--primary-light);
        }
        .stats-grid .stat-item .num {
            font-size: 2.25rem;
            font-weight: 800;
            color: #fff;
            line-height: 1.1;
        }
        .stats-grid .stat-item .label {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.65);
            margin-top: 0.25rem;
        }
        @media(min-width:768px) {
            .stats-inner {
                padding: 3.5rem 4rem;
            }
            .stats-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            .stats-grid .stat-item .num {
                font-size: 2.75rem;
            }
        }
        /* Hot Picks */
        .hot-section {
            background: #fff;
        }
        .hot-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        .hot-card {
            background: #fff;
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .hot-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        .hot-cover {
            position: relative;
            aspect-ratio: 16 / 9;
            overflow: hidden;
        }
        .hot-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .hot-card:hover .hot-cover img {
            transform: scale(1.05);
        }
        .hot-cover .duration {
            position: absolute;
            bottom: 0.75rem;
            right: 0.75rem;
            background: rgba(0, 0, 0, 0.7);
            color: #fff;
            font-size: 0.75rem;
            border-radius: 0.25rem;
            padding: 0.15rem 0.5rem;
        }
        .hot-body {
            padding: 1.25rem;
        }
        .hot-body h3 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 0.5rem;
            transition: color 0.2s;
        }
        .hot-card:hover .hot-body h3 {
            color: var(--primary);
        }
        .hot-meta {
            display: flex;
            gap: 1rem;
            font-size: 0.8rem;
            color: var(--text-muted);
        }
        @media(min-width:768px) {
            .hot-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 1.75rem;
            }
            .hot-grid .hot-card:nth-child(2) {
                margin-top: 1.5rem;
            }
        }
        /* Featured */
        .featured-section {
            background: var(--bg);
        }
        .featured-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
        }
        .featured-item {
            display: flex;
            gap: 1rem;
            background: #fff;
            border-radius: 0.75rem;
            padding: 0.75rem;
            box-shadow: var(--shadow);
            transition: transform 0.25s, box-shadow 0.25s;
        }
        .featured-item:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }
        .featured-cover {
            width: 120px;
            height: 80px;
            border-radius: 0.5rem;
            overflow: hidden;
            flex-shrink: 0;
        }
        .featured-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .featured-body {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .featured-body h3 {
            font-size: 0.92rem;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 0.2rem;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        .featured-body span {
            font-size: 0.75rem;
            color: var(--text-muted);
        }
        @media(min-width:768px) {
            .featured-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.25rem;
            }
        }
        /* Membership */
        .membership-section {
            background: #fff;
        }
        .pricing-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            align-items: center;
        }
        .pricing-card {
            background: #fff;
            border: 2px solid var(--border);
            border-radius: 1.25rem;
            padding: 2rem 1.75rem;
            position: relative;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .pricing-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }
        .pricing-card.featured {
            border-color: var(--primary);
            box-shadow: 0 8px 30px rgba(47, 143, 70, 0.15);
        }
        .pricing-card .recommend-badge {
            position: absolute;
            top: -0.9rem;
            left: 50%;
            transform: translateX(-50%);
            background: var(--accent);
            color: var(--text);
            font-size: 0.75rem;
            font-weight: 700;
            border-radius: 999px;
            padding: 0.25rem 1rem;
            white-space: nowrap;
        }
        .pricing-card .plan-name {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.02em;
        }
        .pricing-card .price {
            font-size: 2.75rem;
            font-weight: 800;
            color: var(--text);
            line-height: 1.2;
            margin: 0.5rem 0 0.25rem;
        }
        .pricing-card .price span {
            font-size: 1rem;
            font-weight: 400;
            color: var(--text-muted);
        }
        .pricing-card .plan-desc {
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin-bottom: 1.25rem;
        }
        .pricing-card ul {
            list-style: none;
            margin-bottom: 1.5rem;
        }
        .pricing-card ul li {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.88rem;
            color: var(--text-secondary);
            padding: 0.35rem 0;
        }
        .pricing-card ul li .check {
            color: var(--primary);
            font-weight: 700;
            flex-shrink: 0;
        }
        .pricing-card .btn {
            width: 100%;
        }
        @media(min-width:768px) {
            .pricing-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 1.5rem;
            }
            .pricing-card.featured {
                transform: scale(1.04);
            }
        }
        /* News */
        .news-section {
            background: var(--bg);
        }
        .news-layout {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .news-list {
            background: #fff;
            border-radius: 1rem;
            padding: 1.75rem;
            box-shadow: var(--shadow);
        }
        .news-list h3 {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 1rem;
        }
        .news-list ul {
            list-style: none;
        }
        .news-list ul li {
            padding: 0.75rem 0;
            border-bottom: 1px solid #F0F4F0;
        }
        .news-list ul li:last-child {
            border-bottom: none;
        }
        .news-list ul li a {
            font-size: 0.92rem;
            color: var(--text-secondary);
            font-weight: 500;
            transition: color 0.2s;
            display: block;
        }
        .news-list ul li a:hover {
            color: var(--primary);
        }
        .news-list ul li span {
            font-size: 0.75rem;
            color: var(--text-muted);
            display: block;
            margin-top: 0.2rem;
        }
        .news-sidebar {
            display: grid;
            gap: 1rem;
            align-content: start;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 1rem;
            padding: 1.5rem;
            box-shadow: var(--shadow);
        }
        .sidebar-card h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 0.75rem;
        }
        .sidebar-card ol {
            list-style: none;
            counter-reset: rank;
        }
        .sidebar-card ol li {
            counter-increment: rank;
            display: flex;
            align-items: center;
            gap: 0.6rem;
            padding: 0.4rem 0;
            font-size: 0.85rem;
            color: var(--text-secondary);
        }
        .sidebar-card ol li::before {
            content: counter(rank);
            font-weight: 800;
            color: #A0B5A4;
            font-size: 0.9rem;
            min-width: 1.2rem;
        }
        .sidebar-card ol li:nth-child(-n+3)::before {
            color: var(--primary);
        }
        .sidebar-card ol li:hover {
            color: var(--primary);
        }
        @media(min-width:768px) {
            .news-layout {
                grid-template-columns: 1.4fr 1fr;
                gap: 1.5rem;
            }
        }
        /* FAQ */
        .faq-section {
            background: #fff;
        }
        .faq-wrap {
            max-width: 760px;
            margin: 0 auto;
        }
        .faq-item {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 0.75rem;
            padding: 0.25rem 1.25rem;
            margin-bottom: 0.75rem;
            transition: border-color 0.2s, box-shadow 0.2s;
        }
        .faq-item summary {
            cursor: pointer;
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--text);
            padding: 0.9rem 0;
            list-style: none;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            transition: color 0.2s;
        }
        .faq-item summary::-webkit-details-marker {
            display: none;
        }
        .faq-item summary::after {
            content: '+';
            font-size: 1.4rem;
            font-weight: 400;
            color: var(--primary);
            transition: transform 0.2s;
        }
        .faq-item[open] summary {
            color: var(--primary);
        }
        .faq-item[open] summary::after {
            transform: rotate(45deg);
        }
        .faq-item p {
            font-size: 0.88rem;
            color: var(--text-secondary);
            line-height: 1.7;
            padding-bottom: 1rem;
        }
        .faq-item[open] {
            border-left: 4px solid var(--primary);
            border-color: var(--primary);
        }
        /* CTA */
        .cta-section {
            background: var(--bg);
        }
        .cta-inner {
            background: var(--primary);
            border-radius: 1.5rem;
            padding: 3rem 1.5rem;
            text-align: center;
            color: #fff;
            position: relative;
            overflow: hidden;
        }
        .cta-inner::before {
            content: '';
            position: absolute;
            top: -40px;
            right: -30px;
            width: 200px;
            height: 200px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M30 20 L75 50 L30 80 Z' fill='white' opacity='0.08'/%3E%3C/svg%3E") no-repeat center / contain;
            pointer-events: none;
        }
        .cta-inner h2 {
            font-size: 1.75rem;
            font-weight: 800;
            margin-bottom: 0.75rem;
            color: #fff;
        }
        .cta-inner p {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.85);
            max-width: 520px;
            margin: 0 auto 1.75rem;
            line-height: 1.6;
        }
        .contact-card {
            background: #fff;
            border-radius: 1.25rem;
            padding: 2rem;
            max-width: 560px;
            margin: 2rem auto 0;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
            text-align: left;
        }
        .contact-form {
            display: grid;
            gap: 0.75rem;
        }
        .contact-form input,
        .contact-form textarea {
            width: 100%;
            border: 1px solid #D9E4DA;
            border-radius: 0.5rem;
            padding: 0.7rem 1rem;
            font-size: 0.9rem;
            background: var(--bg);
            color: var(--text);
            outline: none;
            transition: box-shadow 0.2s, border-color 0.2s;
        }
        .contact-form input::placeholder,
        .contact-form textarea::placeholder {
            color: #8FA694;
        }
        .contact-form input:focus,
        .contact-form textarea:focus {
            border-color: transparent;
            box-shadow: 0 0 0 2px var(--primary);
            background: #fff;
        }
        .contact-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .contact-form .btn {
            width: 100%;
            margin-top: 0.5rem;
        }
        /* Footer */
        .site-footer {
            background: var(--footer-bg);
            color: var(--footer-text);
            padding: 3.5rem 0 1.5rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-bottom: 2.5rem;
        }
        .footer-brand .logo-text .green {
            color: var(--primary-light);
        }
        .footer-brand .logo-text .dark {
            color: #fff;
        }
        .footer-brand p {
            font-size: 0.88rem;
            margin-top: 0.75rem;
            line-height: 1.6;
            color: var(--footer-text);
        }
        .footer-col h4 {
            font-size: 0.95rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 0.75rem;
        }
        .footer-col a {
            display: block;
            font-size: 0.85rem;
            color: var(--footer-text);
            padding: 0.3rem 0;
            transition: color 0.2s;
        }
        .footer-col a:hover {
            color: #fff;
        }
        .footer-social {
            display: flex;
            gap: 0.5rem;
            margin-top: 0.75rem;
        }
        .footer-social a {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s, border-color 0.2s;
        }
        .footer-social a:hover {
            background: #fff;
            border-color: #fff;
        }
        .footer-social a:hover svg {
            stroke: var(--primary);
        }
        .footer-social svg {
            width: 16px;
            height: 16px;
            stroke: var(--footer-text);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.25rem;
            text-align: center;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.4);
        }
        @media(min-width:768px) {
            .footer-grid {
                grid-template-columns: 2fr 1fr 1fr 1fr;
                gap: 2rem;
            }
        }
        /* Utility */
        .view-all {
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--primary);
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
            transition: gap 0.2s;
        }
        .view-all:hover {
            gap: 0.5rem;
        }
        .section-header-row {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 2rem;
        }
        .section-header-row h2 {
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--text);
        }
        @media(min-width:768px) {
            .section-header-row h2 {
                font-size: 2.25rem;
            }
        }

/* roulang page: category1 */
:root {
            --primary: #2F8F46;
            --primary-dark: #1E6B32;
            --primary-light: #4CB96B;
            --accent: #F2C14E;
            --bg: #F7F9F7;
            --card: #FFFFFF;
            --text: #1B2A20;
            --text-secondary: #4A6352;
            --text-muted: #6B7F70;
            --footer-bg: #14291A;
            --footer-text: #A0B5A4;
            --border: #E5EDE6;
            --radius-lg: 1rem;
            --radius-xl: 1.5rem;
            --shadow: 0 2px 12px rgba(31, 95, 58, 0.08);
            --shadow-hover: 0 8px 28px rgba(31, 95, 58, 0.15);
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }
        img {
            max-width: 100%;
            display: block;
        }
        a {
            color: inherit;
            text-decoration: none;
        }
        button {
            font-family: inherit;
            cursor: pointer;
            background: none;
            border: none;
        }
        input,
        textarea {
            font-family: inherit;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .section {
            padding: 4.5rem 0;
        }

        .section-header {
            text-align: center;
            max-width: 720px;
            margin: 0 auto 3rem;
        }
        .section-header .eyebrow {
            display: inline-block;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--primary);
            background: #E8F3E9;
            border-radius: 999px;
            padding: 0.3rem 1rem;
            margin-bottom: 1rem;
        }
        .section-header h2 {
            font-size: 2rem;
            line-height: 1.2;
            color: var(--text);
            font-weight: 800;
            letter-spacing: -0.02em;
            margin-bottom: 0.75rem;
        }
        .section-header p {
            font-size: 1rem;
            color: var(--text-secondary);
            line-height: 1.7;
        }
        @media (min-width: 768px) {
            .section-header h2 {
                font-size: 2.5rem;
            }
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            font-weight: 600;
            border-radius: 0.5rem;
            transition: all 0.2s ease;
            font-size: 0.95rem;
            padding: 0.7rem 1.5rem;
            border: 2px solid transparent;
            line-height: 1.4;
        }
        .btn:focus-visible {
            outline: none;
            box-shadow: 0 0 0 3px rgba(47, 143, 70, 0.4);
        }
        .btn-primary {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
        }
        .btn-primary:hover {
            background: var(--primary-dark);
            border-color: var(--primary-dark);
        }
        .btn-primary:active {
            background: #185A28;
            border-color: #185A28;
        }
        .btn-outline {
            background: transparent;
            color: var(--primary);
            border-color: var(--primary);
        }
        .btn-outline:hover {
            background: rgba(47, 143, 70, 0.06);
        }
        .btn-white {
            background: #fff;
            color: var(--primary);
            border-color: #fff;
        }
        .btn-white:hover {
            background: var(--accent);
            border-color: var(--accent);
            color: var(--text);
        }
        .btn-lg {
            padding: 0.85rem 2rem;
            font-size: 1rem;
        }
        .btn-sm {
            padding: 0.45rem 1rem;
            font-size: 0.85rem;
        }

        .badge {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 700;
            border-radius: 999px;
            padding: 0.2rem 0.7rem;
        }
        .badge-accent {
            background: var(--accent);
            color: var(--text);
        }
        .badge-green {
            background: #E8F3E9;
            color: var(--primary-dark);
        }

        /* Header */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 50;
            background: rgba(255, 255, 255, 0.88);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 64px;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-shrink: 0;
        }
        .logo-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 8px rgba(47, 143, 70, 0.3);
        }
        .logo-icon svg {
            width: 14px;
            height: 14px;
            fill: #fff;
            margin-left: 2px;
        }
        .logo-text {
            font-size: 1.25rem;
            font-weight: 700;
            letter-spacing: -0.01em;
            white-space: nowrap;
        }
        .logo-text .green {
            color: var(--primary);
        }
        .logo-text .dark {
            color: var(--text);
        }
        .nav-links {
            display: none;
            align-items: center;
            gap: 1.5rem;
        }
        .nav-links a {
            font-size: 0.9rem;
            color: var(--text-secondary);
            font-weight: 500;
            position: relative;
            padding: 0.25rem 0;
            transition: color 0.2s;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 100%;
            height: 2px;
            background: var(--primary);
            border-radius: 2px;
            transform: scaleX(0);
            transition: transform 0.25s ease;
        }
        .nav-links a:hover {
            color: var(--primary);
        }
        .nav-links a:hover::after {
            transform: scaleX(1);
        }
        .nav-links a.active {
            color: var(--primary);
            font-weight: 600;
        }
        .nav-links a.active::after {
            transform: scaleX(1);
        }
        .header-actions {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .header-search {
            display: none;
            align-items: center;
            gap: 0.5rem;
            background: #F0F4F0;
            border-radius: 999px;
            padding: 0.4rem 1rem;
            width: 10rem;
            transition: all 0.2s;
        }
        .header-search input {
            border: none;
            background: transparent;
            outline: none;
            font-size: 0.85rem;
            color: var(--text);
            width: 100%;
        }
        .header-search:focus-within {
            background: #fff;
            box-shadow: 0 0 0 2px rgba(47, 143, 70, 0.4);
        }
        .header-search .search-icon {
            width: 15px;
            height: 15px;
            color: var(--text-muted);
            flex-shrink: 0;
        }
        .header-cta {
            display: inline-flex;
            align-items: center;
            font-size: 0.8rem;
            font-weight: 600;
            color: #fff;
            background: var(--primary);
            border-radius: 0.5rem;
            padding: 0.4rem 0.9rem;
            transition: background 0.2s;
            white-space: nowrap;
        }
        .header-cta:hover {
            background: var(--primary-dark);
        }
        .header-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 0.5rem;
            color: var(--text);
        }
        .header-toggle svg {
            width: 20px;
            height: 20px;
        }
        .mobile-menu {
            display: none;
            border-top: 1px solid var(--border);
            padding: 1rem 1.25rem;
            background: #fff;
        }
        .mobile-menu.open {
            display: block;
        }
        .mobile-menu a {
            display: block;
            padding: 0.6rem 0;
            font-size: 0.95rem;
            color: var(--text-secondary);
            border-bottom: 1px solid #F0F4F0;
        }
        .mobile-menu a:last-child {
            border-bottom: none;
        }
        .mobile-menu a.active {
            color: var(--primary);
            font-weight: 600;
        }
        .mobile-search {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: #F0F4F0;
            border-radius: 999px;
            padding: 0.5rem 1rem;
            margin-bottom: 0.75rem;
        }
        .mobile-search input {
            border: none;
            background: transparent;
            outline: none;
            font-size: 0.85rem;
            width: 100%;
            color: var(--text);
        }
        @media (min-width: 768px) {
            .nav-links {
                display: flex;
            }
            .header-search {
                display: flex;
            }
            .header-toggle {
                display: none;
            }
            .header-cta {
                font-size: 0.9rem;
                padding: 0.5rem 1.2rem;
            }
        }

        /* Footer */
        .site-footer {
            background: var(--footer-bg);
            color: var(--footer-text);
            padding: 3.5rem 0 0;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            padding-bottom: 2.5rem;
        }
        .footer-brand p {
            font-size: 0.9rem;
            line-height: 1.7;
            margin-top: 0.75rem;
            max-width: 320px;
        }
        .footer-col h4 {
            color: #fff;
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 0.8rem;
        }
        .footer-col a {
            display: block;
            font-size: 0.85rem;
            color: var(--footer-text);
            padding: 0.25rem 0;
            transition: color 0.2s;
        }
        .footer-col a:hover {
            color: #fff;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 1.25rem 0;
            text-align: center;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.5);
        }
        @media (min-width: 768px) {
            .footer-grid {
                grid-template-columns: 1.5fr 1fr 1fr 1fr;
                gap: 3rem;
            }
        }

        /* Category Page Styles */
        .breadcrumb {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.4rem;
            font-size: 0.85rem;
            color: var(--text-muted);
            padding-top: 1.25rem;
            padding-bottom: 1.25rem;
        }
        .breadcrumb a {
            color: var(--text-muted);
            transition: color 0.2s;
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        .breadcrumb .separator {
            color: #C5D2C7;
            font-size: 0.75rem;
        }
        .breadcrumb .current {
            color: var(--text);
            font-weight: 500;
        }

        .page-hero {
            background: linear-gradient(135deg, #EAF3EB 0%, #DCEBE0 50%, #E8F3E9 100%);
            border-radius: 1.5rem;
            padding: 2.5rem 2rem;
            margin-bottom: 2rem;
            position: relative;
            overflow: hidden;
        }
        .page-hero::after {
            content: '';
            position: absolute;
            right: -30px;
            bottom: -30px;
            width: 180px;
            height: 180px;
            background: radial-gradient(circle, rgba(47, 143, 70, 0.12) 0%, transparent 70%);
            border-radius: 50%;
        }
        .page-hero h1 {
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--text);
            letter-spacing: -0.02em;
            margin-bottom: 0.6rem;
            position: relative;
            z-index: 1;
        }
        .page-hero p {
            font-size: 0.95rem;
            color: var(--text-secondary);
            max-width: 640px;
            position: relative;
            z-index: 1;
        }
        @media (min-width: 768px) {
            .page-hero {
                padding: 3.5rem 3rem;
            }
            .page-hero h1 {
                font-size: 2.5rem;
            }
            .page-hero p {
                font-size: 1rem;
            }
        }

        .filter-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 2rem;
        }
        .filter-tab {
            display: inline-block;
            padding: 0.35rem 1.1rem;
            font-size: 0.85rem;
            border-radius: 999px;
            background: #F0F4F0;
            color: var(--text-secondary);
            transition: all 0.2s;
            font-weight: 500;
            cursor: pointer;
            border: none;
        }
        .filter-tab:hover {
            background: #E0EBE1;
            color: var(--primary-dark);
        }
        .filter-tab.active {
            background: var(--primary);
            color: #fff;
            font-weight: 600;
        }

        .category-layout {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        @media (min-width: 1024px) {
            .category-layout {
                grid-template-columns: 1fr 300px;
            }
        }

        .video-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.25rem;
        }
        @media (min-width: 768px) {
            .video-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (min-width: 1024px) {
            .video-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 1.1rem;
            }
        }

        .video-card {
            border-radius: 0.75rem;
            overflow: hidden;
            background: var(--card);
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
        }
        .video-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }
        .video-card-cover {
            position: relative;
            aspect-ratio: 16 / 9;
            overflow: hidden;
            border-radius: 0.75rem 0.75rem 0 0;
        }
        .video-card-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .video-card:hover .video-card-cover img {
            transform: scale(1.06);
        }
        .duration-badge {
            position: absolute;
            bottom: 0.5rem;
            right: 0.5rem;
            background: rgba(0, 0, 0, 0.7);
            color: #fff;
            font-size: 0.72rem;
            border-radius: 0.25rem;
            padding: 0.1rem 0.4rem;
            font-weight: 500;
        }
        .video-card-body {
            padding: 0.75rem;
        }
        .video-card-title {
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--text);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            margin-bottom: 0.35rem;
            transition: color 0.2s;
        }
        .video-card:hover .video-card-title {
            color: var(--primary);
        }
        .video-card-meta {
            display: flex;
            gap: 0.75rem;
            font-size: 0.72rem;
            color: var(--text-muted);
        }

        .sidebar-card {
            background: var(--card);
            border-radius: var(--radius-lg);
            padding: 1.5rem;
            box-shadow: var(--shadow);
        }
        .sidebar-card h3 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 1rem;
            padding-bottom: 0.75rem;
            border-bottom: 2px solid #E8F3E9;
        }
        .trend-list {
            counter-reset: trend;
        }
        .trend-item {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            padding: 0.5rem 0;
            border-bottom: 1px solid #F0F4F0;
        }
        .trend-item:last-child {
            border-bottom: none;
        }
        .trend-num {
            font-size: 0.95rem;
            font-weight: 700;
            min-width: 22px;
            text-align: center;
        }
        .trend-num.top-3 {
            color: var(--primary);
        }
        .trend-num.normal {
            color: var(--text-muted);
        }
        .trend-title {
            font-size: 0.82rem;
            color: var(--text-secondary);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            transition: color 0.2s;
        }
        .trend-title:hover {
            color: var(--primary);
        }

        .pagination {
            display: flex;
            gap: 0.5rem;
            justify-content: center;
            margin-top: 2.5rem;
            flex-wrap: wrap;
        }
        .page-btn {
            width: 2.25rem;
            height: 2.25rem;
            border-radius: 0.5rem;
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--card);
            border: 1px solid var(--border);
            color: var(--text-secondary);
            transition: all 0.2s;
        }
        .page-btn:hover {
            border-color: var(--primary);
            color: var(--primary);
        }
        .page-btn.active {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
            font-weight: 600;
        }
        .page-btn.disabled {
            opacity: 0.4;
            pointer-events: none;
        }
        .page-btn.prev-next {
            width: auto;
            padding: 0 0.9rem;
            font-size: 0.85rem;
        }

        /* FAQ */
        .faq-item {
            border: 1px solid var(--border);
            border-radius: 0.5rem;
            background: var(--card);
            padding: 1.1rem 1.4rem;
            margin-bottom: 0.75rem;
            transition: all 0.2s;
        }
        .faq-item[open] {
            border-left: 4px solid var(--primary);
            box-shadow: var(--shadow);
        }
        .faq-item summary {
            font-weight: 500;
            font-size: 0.95rem;
            color: var(--text);
            cursor: pointer;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-item summary::-webkit-details-marker {
            display: none;
        }
        .faq-item summary::after {
            content: '+';
            font-size: 1.2rem;
            color: var(--primary);
            font-weight: 400;
            transition: transform 0.2s;
        }
        .faq-item[open] summary::after {
            transform: rotate(45deg);
        }
        .faq-item[open] summary {
            color: var(--primary);
        }
        .faq-item .faq-answer {
            font-size: 0.85rem;
            color: var(--text-secondary);
            line-height: 1.7;
            padding-top: 0.6rem;
            margin-top: 0.6rem;
            border-top: 1px solid #F0F4F0;
        }

        /* CTA Banner */
        .cta-banner {
            background: var(--primary);
            border-radius: var(--radius-xl);
            padding: 2.5rem 1.5rem;
            text-align: center;
            color: #fff;
            position: relative;
            overflow: hidden;
        }
        .cta-banner::before {
            content: '';
            position: absolute;
            right: -20px;
            top: -20px;
            width: 140px;
            height: 140px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 50%;
        }
        .cta-banner::after {
            content: '';
            position: absolute;
            right: 60px;
            bottom: -40px;
            width: 90px;
            height: 90px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
        }
        .cta-banner h2 {
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 0.75rem;
            position: relative;
            z-index: 1;
        }
        .cta-banner p {
            font-size: 0.9rem;
            opacity: 0.9;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }
        @media (min-width: 768px) {
            .cta-banner {
                padding: 3.5rem 3rem;
            }
            .cta-banner h2 {
                font-size: 2rem;
            }
        }
