:root {
    --bg-cream: #FFF9F2;
    --bg-mint: #EDF7F0;
    --coral: #FF5E6E;
    --coral-deep: #E9455A;
    --coral-light: #FF8A7D;
    --green: #2E9E63;
    --green-light: #3BB273;
    --green-deep: #147A4A;
    --yellow: #FDB833;
    --ink: #173B2A;
    --ink-soft: rgba(23, 59, 42, 0.65);
    --line: rgba(46, 158, 99, 0.18);
    --shadow-soft: 0 6px 30px rgba(255, 94, 110, 0.12);
    --radius-card: 24px 8px 24px 8px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: system-ui, 'PingFang SC', 'Microsoft YaHei', sans-serif;
    overflow-x: hidden;
    background: var(--bg-cream);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    background-image: radial-gradient(circle at 92% 8%, rgba(253, 184, 51, 0.09), transparent 320px), radial-gradient(circle at 6% 92%, rgba(46, 158, 99, 0.05), transparent 260px);
}

::selection { background: rgba(255, 94, 110, 0.22); color: var(--ink); }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-cream); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--coral), var(--green-light)); border-radius: 8px; }

h1, h2, h3, h4 { line-height: 1.25; color: var(--ink); }
p { line-height: 1.7; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
a { transition: color 0.2s ease; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section {
    padding: 80px 0;
    position: relative;
}

.section:nth-child(even) { background: var(--bg-mint); }

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 249, 242, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow 0.3s ease;
}

.site-header::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, var(--coral), var(--yellow), var(--green-light));
    opacity: 0.55;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.3rem;
    text-decoration: none;
    color: var(--ink);
    letter-spacing: -0.5px;
}

.logo-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    background: radial-gradient(circle at 50% 60%, var(--coral) 54%, var(--green-light) 55%, var(--green-deep) 72%);
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.35), 0 3px 10px rgba(46, 158, 99, 0.25);
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--green-deep);
    top: 12px;
    left: 12px;
    box-shadow: 16px 6px 0 -0.5px var(--green-deep), 8px 20px 0 -0.5px var(--green-deep);
    opacity: 0.5;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.main-nav a {
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--ink);
    transition: color 0.25s ease;
    position: relative;
    padding: 4px 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--coral), var(--yellow));
    border-radius: 2px;
    transition: width 0.3s ease;
}

.main-nav a:hover { color: var(--coral); }
.main-nav a:hover::after { width: 100%; }

.nav-cta {
    padding: 9px 22px;
    border-radius: 100px;
    color: #fff !important;
    font-weight: 700 !important;
    background:
        linear-gradient(180deg,
            var(--green-light) 0%,
            var(--green-light) 5px,
            transparent 5px,
            transparent calc(100% - 5px),
            var(--green-light) calc(100% - 5px)),
        linear-gradient(135deg, var(--coral), var(--coral-deep));
    box-shadow: 0 4px 16px rgba(255, 94, 110, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}

.nav-cta::after { display: none; }

.nav-cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 24px rgba(255, 94, 110, 0.45) !important;
    color: #fff !important;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: none;
    background: transparent;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    border-radius: 8px;
    z-index: 1001;
    transition: background 0.2s;
}

.menu-toggle:hover { background: rgba(255, 94, 110, 0.08); }

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: 0.3s ease;
}

.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
    flex-wrap: wrap;
}

.hero::before {
    content: '';
    position: absolute;
    right: -120px;
    top: -120px;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle,
        rgba(255, 94, 110, 0.13) 0%,
        rgba(255, 94, 110, 0.13) 45%,
        rgba(46, 158, 99, 0.15) 46%,
        rgba(46, 158, 99, 0.15) 62%,
        transparent 63%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    left: 4%;
    bottom: 4%;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle,
        rgba(255, 94, 110, 0.10) 0%,
        rgba(255, 94, 110, 0.10) 45%,
        rgba(46, 158, 99, 0.12) 46%,
        rgba(46, 158, 99, 0.12) 62%,
        transparent 63%);
    border-radius: 50%;
    pointer-events: none;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
    width: 100%;
}

.hero-content {
    max-width: 640px;
    position: relative;
    z-index: 1;
    flex: 1 1 440px;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 800;
    padding: 6px 18px;
    border-radius: 100px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--yellow), #FFE28A);
    color: #6b4d10;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 2px 12px rgba(253, 184, 51, 0.35);
}

.hero h1 {
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    line-height: 1.06;
    margin-bottom: 24px;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--coral);
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 50%, #FFB74D 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.1rem;
    color: var(--ink-soft);
    max-width: 540px;
    margin-bottom: 36px;
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-image {
    border-radius: 32px 12px 32px 12px;
    overflow: hidden;
    position: relative;
    max-width: 420px;
    flex-shrink: 0;
    box-shadow: 0 24px 60px rgba(46, 158, 99, 0.18);
    border: 4px solid #fff;
    outline: 2px solid var(--line);
    transform: rotate(2deg);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-image:hover {
    transform: rotate(0deg) scale(1.01);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: 0.3s ease;
    font-size: 0.95rem;
    letter-spacing: 0.2px;
}

.btn-primary {
    color: #fff;
    background:
        linear-gradient(180deg,
            var(--green-light) 0%,
            var(--green-light) 5px,
            transparent 5px,
            transparent calc(100% - 5px),
            var(--green-light) calc(100% - 5px)),
        linear-gradient(135deg, var(--coral), var(--coral-deep));
    box-shadow: 0 8px 24px rgba(255, 94, 110, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 32px rgba(255, 94, 110, 0.45);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.65);
    border: 1.5px solid var(--green-light);
    color: var(--green-deep);
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background: rgba(46, 158, 99, 0.08);
    border-color: var(--green);
    transform: translateY(-2px);
}

.section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 14px;
    text-transform: uppercase;
    color: var(--green-deep);
    border-bottom: 2px solid var(--green-light);
    padding-bottom: 6px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--ink);
}

.section-title::after {
    content: '';
    display: block;
    width: 56px;
    height: 7px;
    margin-top: 14px;
    background: linear-gradient(90deg, var(--coral) 0%, var(--coral) 32%, var(--yellow) 33%, var(--yellow) 68%, var(--green-light) 69%, var(--green-light) 100%);
    border-radius: 8px;
}

.text-center .section-title::after {
    margin: 14px auto 0;
}

.text-center .section-desc {
    margin: 0 auto 48px;
}

.section-desc {
    max-width: 600px;
    color: var(--ink-soft);
    margin-bottom: 48px;
    line-height: 1.75;
    font-size: 1.02rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 28px;
}

.category-card {
    border-radius: var(--radius-card);
    padding: 32px 28px 28px;
    border: 1.5px solid var(--line);
    transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    background: rgba(255, 255, 255, 0.85);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(6px);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, transparent 50%, rgba(255, 94, 110, 0.07) 50%);
    border-radius: 0 0 0 12px;
}

.category-card:hover {
    transform: translateY(-6px) rotate(-0.6deg);
    box-shadow: 0 16px 44px rgba(46, 158, 99, 0.14);
    border-color: rgba(255, 94, 110, 0.28);
}

.category-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.category-card p {
    font-size: 0.9rem;
    color: var(--ink-soft);
    line-height: 1.65;
    margin-bottom: 18px;
}

.card-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 1.4rem;
    background: linear-gradient(135deg, rgba(255, 94, 110, 0.12), rgba(253, 184, 51, 0.10));
    border: 1px solid rgba(255, 94, 110, 0.15);
}

.card-link {
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    color: var(--coral);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.25s ease, color 0.2s;
}

.card-link:hover {
    gap: 8px;
    color: var(--coral-deep);
}

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.feature-image {
    border-radius: 32px 12px 32px 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 16px 48px rgba(46, 158, 99, 0.16);
}

.feature-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid rgba(255, 255, 255, 0.55);
    border-radius: inherit;
    pointer-events: none;
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
}

.feature-text h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.feature-text p {
    color: var(--ink-soft);
    margin-bottom: 24px;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 0.96rem;
}

.feature-list li::before {
    content: '✦';
    font-weight: 700;
    color: var(--green-light);
    font-size: 0.8rem;
    background: rgba(46, 158, 99, 0.1);
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-item {
    padding: 32px 24px;
    border-radius: var(--radius-card);
    border: 1.5px solid var(--line);
    background: rgba(255, 255, 255, 0.75);
    position: relative;
    transition: 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}


.stat-number {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: var(--coral);
    line-height: 1.1;
    display: block;
    position: relative;
}

.stat-number::after {
    content: '';
    display: block;
    width: 24px;
    height: 3px;
    background: linear-gradient(90deg, var(--green-light), var(--yellow));
    margin: 12px auto 8px;
    border-radius: 3px;
}

.stat-label {
    font-size: 0.92rem;
    color: var(--ink-soft);
    opacity: 0.85;
    margin-top: 6px;
    font-weight: 500;
    letter-spacing: 1px;
}

.content-wall {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}

.content-wall-item {
    border-radius: 20px 8px 20px 8px;
    overflow: hidden;
    border: 1.5px solid var(--line);
    transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    background: #fff;
}

.content-wall-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(255, 94, 110, 0.12);
    border-color: rgba(255, 94, 110, 0.25);
}

.content-wall-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.content-wall-item:hover img {
    transform: scale(1.05);
}

.content-wall-body {
    padding: 22px 24px 26px;
}

.content-wall-body h3 {
    font-weight: 800;
    font-size: 1.05rem;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.content-wall-body p {
    font-size: 0.88rem;
    color: var(--ink-soft);
    line-height: 1.6;
}

.content-wall-body .content-wall-meta {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--green-deep);
    background: rgba(46, 158, 99, 0.08);
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 12px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1.5px solid var(--line);
    border-radius: 18px 6px 18px 6px;
    margin-bottom: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    background: rgba(255, 255, 255, 0.8);
}

.faq-item:hover {
    border-color: rgba(255, 94, 110, 0.3);
    box-shadow: 0 4px 16px rgba(255, 94, 110, 0.08);
}

.faq-item .faq-question {
    padding: 20px 24px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--ink);
}

.faq-item .faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--coral);
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    line-height: 1;
}

.faq-item.open .faq-question::after {
    transform: rotate(45deg);
}

.faq-item .faq-answer {
    padding: 0 24px 20px;
    display: none;
    color: var(--ink-soft);
    line-height: 1.7;
    font-size: 0.95rem;
}

.faq-item.open .faq-answer {
    display: block;
    animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

.cta-banner {
    padding: 64px 40px;
    text-align: center;
    border-radius: 36px 12px 36px 12px;
    color: #fff;
    background: linear-gradient(120deg, var(--coral), var(--coral-light) 45%, var(--yellow));
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(255, 94, 110, 0.28);
}

.cta-banner::before,
.cta-banner::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    pointer-events: none;
}

.cta-banner::before {
    width: 180px;
    height: 180px;
    top: -70px;
    left: -70px;
}

.cta-banner::after {
    width: 100px;
    height: 100px;
    bottom: -30px;
    right: -20px;
    background: rgba(255, 255, 255, 0.08);
}

.cta-banner h2 {
    color: #fff;
    font-weight: 900;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 12px rgba(233, 69, 90, 0.25);
}

.cta-banner p {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    font-size: 1rem;
}

.cta-banner .btn-primary {
    background: #fff;
    color: var(--coral);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 1;
}

.cta-banner .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.site-footer {
    padding: 64px 0 28px;
    background: var(--bg-mint);
    border-top: 2px solid var(--line);
    color: var(--ink);
}

.site-footer .container {}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand {
    font-weight: 900;
    font-size: 1.4rem;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--ink);
}

.footer-brand .logo-icon {
    width: 30px;
    height: 30px;
    font-size: 0.85rem;
}

.footer-brand + p {
    color: var(--ink-soft);
    font-size: 0.88rem;
    line-height: 1.7;
    max-width: 260px;
}

.footer-col h4 {
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20px;
    height: 2px;
    background: var(--coral);
    border-radius: 2px;
}

.footer-col a {
    display: block;
    font-size: 0.9rem;
    color: var(--ink-soft);
    text-decoration: none;
    padding: 4px 0;
    transition: 0.2s ease;
}

.footer-col a:hover {
    color: var(--coral);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--line);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--ink-soft);
    opacity: 0.75;
}

.text-accent {
    color: var(--coral);
    position: relative;
    white-space: nowrap;
}

.text-accent::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 1px;
    width: 100%;
    height: 8px;
    background: rgba(255, 94, 110, 0.15);
    z-index: -1;
    border-radius: 4px;
}

.text-center { text-align: center; }

.seo-description {
    max-width: 600px;
    margin: 0 auto 48px;
    color: var(--ink-soft);
    line-height: 1.75;
}

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

@media (max-width: 768px) {
    .feature-block {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .main-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .main-nav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 68px;
        left: 0;
        width: 100%;
        background: var(--bg-cream);
        padding: 24px 24px 28px;
        gap: 4px;
        border-bottom: 1px solid var(--line);
        box-shadow: 0 16px 40px rgba(23, 59, 42, 0.1);
        animation: fadeInUp 0.3s ease;
    }

    .main-nav.open a {
        width: 100%;
        padding: 10px 8px;
        font-size: 1rem;
    }

    .main-nav.open a::after {
        display: none;
    }

    .main-nav.open .nav-cta {
        margin-top: 12px;
        text-align: center;
    }

    .hero {
        padding-top: 100px;
        justify-content: center;
        text-align: center;
    }

    .hero .container {
        justify-content: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        flex-basis: 100%;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        max-width: 360px;
        margin: 0 auto;
    }

    .cta-banner {
        padding: 48px 24px;
    }

    .section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .cards-grid,
    .content-wall,
    .stats-bar {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
    }

    .btn {
        justify-content: center;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero::before {
        width: 280px;
        height: 280px;
        right: -100px;
        top: -60px;
    }

    .hero::after {
        width: 100px;
        height: 100px;
        left: 2%;
        bottom: 2%;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .content-wall-item img {
        height: 180px;
    }

    .stat-number::after {
        margin: 10px auto;
    }
}