*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #FF6B5E;
  --primary-dark: #E05246;
  --secondary: #7BAE9B;
  --accent: #F4C262;
  --accent-soft: #FFF3DC;
  --bg-warm: #FFF9F4;
  --bg-soft: #FFF0E9;
  --bg-card: #FFFFFF;
  --text-main: #2D2A26;
  --text-soft: #7A7A75;
  --border-soft: #F0E6DC;
  --shadow-soft: 0 12px 40px rgba(255, 107, 94, 0.08);
  --shadow-hover: 0 20px 60px rgba(255, 107, 94, 0.16);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  overflow-x: hidden;
  background: var(--bg-warm);
  color: var(--text-main);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: rgba(255, 107, 94, 0.18);
  color: var(--primary-dark);
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-warm);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 107, 94, 0.25);
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 107, 94, 0.45);
}

h1, h2, h3, h4 {
  line-height: 1.3;
  font-weight: 800;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

/* ============ 核心布局 ============ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 90px 0;
  position: relative;
}

.section:nth-child(even) {
  background: var(--bg-soft);
}

/* ============ 导航 ============ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 249, 244, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(240, 230, 220, 0.7);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.25rem;
  text-decoration: none;
  color: var(--text-main);
  letter-spacing: 0.4px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: linear-gradient(135deg, #FFB3AA, var(--primary));
  color: #fff;
  box-shadow: 0 6px 16px rgba(255, 107, 94, 0.35);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  transition: 0.3s;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-soft);
  transition: color 0.25s;
  position: relative;
  padding: 4px 0;
}

.main-nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 4px;
  transform: translateX(-50%);
  transition: width 0.35s ease;
}

.main-nav a:not(.nav-cta):hover {
  color: var(--primary);
}

.main-nav a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px;
  border-radius: 50px;
  color: #fff !important;
  font-weight: 600;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 6px 18px rgba(255, 107, 94, 0.32);
  transition: 0.3s;
}

.nav-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 28px rgba(255, 107, 94, 0.42);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-soft);
  background: var(--bg-card);
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--text-main);
  transition: 0.25s;
}

.menu-toggle:hover {
  background: var(--bg-soft);
  color: var(--primary);
}

/* ============ Hero ============ */
.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 130px 0 90px;
  background: linear-gradient(135deg, #FFF9F4 0%, #FFF0E9 52%, #F0FAF6 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -100px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 94, 0.14) 0%, transparent 68%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 360px;
  height: 360px;
  border-radius: 38% 62% 70% 30% / 55% 42% 58% 45%;
  background: radial-gradient(circle, rgba(123, 174, 155, 0.16) 0%, transparent 70%);
  pointer-events: none;
  animation: floatShape 9s ease-in-out infinite;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 64px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero .container::before {
  content: '';
  position: absolute;
  top: 12%;
  left: 42%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 107, 94, 0.18);
  animation: floatDot 5s ease-in-out infinite;
}

.hero .container::after {
  content: '';
  position: absolute;
  bottom: 20%;
  right: 6%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(123, 174, 155, 0.25);
  animation: floatDot 7s ease-in-out 1s infinite;
}

.hero-content {
  max-width: 720px;
  animation: fadeInUp 0.85s ease-out both;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 7px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--accent-soft), #FFF0EA);
  color: var(--primary-dark);
  border: 1px solid rgba(255, 107, 94, 0.15);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(255, 107, 94, 0.06);
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1.12;
  margin-bottom: 24px;
  font-weight: 900;
  letter-spacing: -1.5px;
  background: linear-gradient(120deg, #2D2A26 20%, #4A3F38 70%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.08rem;
  opacity: 0.75;
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.85;
  color: var(--text-soft);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  z-index: 2;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 24px 24px 0 rgba(123, 174, 155, 0.18), 0 28px 60px rgba(45, 42, 38, 0.12);
  transform: rotate(1.5deg);
  animation: fadeInUp 1s ease-out 0.2s both;
  transition: transform 0.4s;
}

.hero-image:hover {
  transform: rotate(0deg) scale(1.01);
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 10px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 24px;
  pointer-events: none;
}

.hero-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* ============ 按钮 ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 8px 24px rgba(255, 107, 94, 0.32);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(255, 107, 94, 0.45);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: rgba(255, 107, 94, 0.08);
  border-color: var(--primary-dark);
  color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 107, 94, 0.12);
}

/* ============ 区块标签标题 ============ */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 16px;
  text-transform: uppercase;
  color: var(--primary);
  background: linear-gradient(135deg, var(--accent-soft), #FFF0E9);
  padding: 7px 18px;
  border-radius: 50px;
  border: 1px solid rgba(255, 107, 94, 0.12);
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  line-height: 1.3;
  color: var(--text-main);
}

.section-desc {
  max-width: 620px;
  opacity: 0.72;
  margin-bottom: 48px;
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.8;
}

/* ============ 卡片网格 ============ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.category-card {
  border-radius: var(--radius-lg);
  padding: 36px 30px 32px;
  border: 1px solid var(--border-soft);
  transition: 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(145deg, #FFFFFF 0%, #FFF8F2 100%);
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(255, 107, 94, 0.06);
  transition: transform 0.5s ease, opacity 0.5s ease;
  pointer-events: none;
}

.category-card::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 60px;
  height: 60px;
  border-radius: 42% 58% 70% 30%;
  background: rgba(123, 174, 155, 0.08);
  transition: 0.5s;
  pointer-events: none;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(255, 107, 94, 0.2);
}

.category-card:hover::before {
  transform: scale(1.9);
  opacity: 0.4;
}

.category-card:hover::after {
  transform: scale(1.4) rotate(25deg);
  opacity: 0.3;
}

.card-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 1.6rem;
  background: linear-gradient(135deg, #FFF0E9 0%, #FFE4DC 100%);
  color: var(--primary);
  box-shadow: 0 6px 16px rgba(255, 107, 94, 0.12);
  position: relative;
  z-index: 1;
}

.category-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.category-card p {
  font-size: 0.9rem;
  color: var(--text-soft);
  margin-bottom: 16px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.card-link {
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: 0.25s;
  position: relative;
  z-index: 1;
}

.card-link:hover {
  gap: 12px;
  color: var(--primary-dark);
}

/* ============ 特性块 ============ */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.feature-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.feature-image::after {
  content: '';
  position: absolute;
  inset: 10px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 20px;
  pointer-events: none;
}

.feature-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.feature-image:hover img {
  transform: scale(1.05);
}

.feature-text {
  position: relative;
}

.feature-text h2 {
  font-size: 1.9rem;
  margin-bottom: 18px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.feature-text p {
  margin-bottom: 24px;
  color: var(--text-soft);
  line-height: 1.8;
  font-size: 1rem;
}

.feature-list {
  list-style: none;
  margin-top: 8px;
}

.feature-list li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--text-soft);
  border-bottom: 1px dashed var(--border-soft);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li::before {
  content: '✦';
  font-weight: 700;
  color: var(--secondary);
  font-size: 1rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(123, 174, 155, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ============ 数据条 ============ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}

.stat-item {
  padding: 40px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  background: var(--bg-card);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
  transition: 0.35s;
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 4px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: 0.3s;
}

.stat-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.stat-item:hover::before {
  opacity: 1;
  width: 60px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.6;
  margin-top: 8px;
  letter-spacing: 1px;
}

/* ============ 内容墙 ============ */
.content-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.content-wall-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--bg-card);
  position: relative;
}

.content-wall-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(255, 107, 94, 0.15);
}

.content-wall-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.content-wall-item:hover img {
  transform: scale(1.04);
}

.content-wall-body {
  padding: 22px 24px 26px;
}

.content-wall-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.content-wall-body p {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.7;
}

/* ============ FAQ ============ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-card);
  transition: 0.3s;
}

.faq-item:hover {
  border-color: rgba(255, 107, 94, 0.25);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.faq-item .faq-question {
  padding: 20px 26px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.98rem;
}

.faq-item .faq-question::after {
  content: '+';
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--primary);
  transition: transform 0.35s ease;
  line-height: 1;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-item .faq-answer {
  padding: 0 26px 22px;
  display: none;
  opacity: 0.72;
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-soft);
}

.faq-item.open .faq-answer {
  display: block;
  animation: fadeIn 0.4s ease;
}

/* ============ CTA横幅 ============ */
.cta-banner {
  padding: 80px 48px;
  text-align: center;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #FF6B5E 0%, #ED7B5C 50%, #DDA66E 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 280px;
  height: 280px;
  border-radius: 42% 58% 55% 45%;
  background: rgba(255, 255, 255, 0.06);
}

.cta-banner h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
  color: #fff;
  letter-spacing: -0.5px;
}

.cta-banner p {
  max-width: 620px;
  margin: 0 auto 32px;
  opacity: 0.92;
  position: relative;
  z-index: 2;
  font-size: 1.05rem;
  line-height: 1.8;
}

.cta-banner .btn-primary {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.16);
  position: relative;
  z-index: 2;
}

.cta-banner .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

/* ============ 页脚 ============ */
.site-footer {
  padding: 80px 0 30px;
  background: linear-gradient(180deg, transparent 0%, #FFF0E9 55%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand {
  font-size: 0.92rem;
  opacity: 0.72;
  line-height: 1.9;
  color: var(--text-soft);
  max-width: 320px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
  color: var(--text-main);
  position: relative;
  padding-bottom: 8px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.footer-col a {
  display: block;
  padding: 5px 0;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--text-soft);
  transition: 0.25s;
}

.footer-col a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 1px solid rgba(45, 42, 38, 0.1);
  margin-top: 56px;
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.6;
  color: var(--text-soft);
}

/* ============ 工具类 ============ */
.text-accent {
  color: var(--primary);
}

.text-center {
  text-align: center;
}

.seo-description {
  max-width: 620px;
  margin: 0 auto 56px;
  opacity: 0.72;
  line-height: 1.9;
  color: var(--text-soft);
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

/* ============ 动画 ============ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 0.72;
    transform: translateY(0);
  }
}

@keyframes floatShape {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-18px) rotate(4deg);
  }
}

@keyframes floatDot {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-14px) scale(1.15);
    opacity: 1;
  }
}

/* ============ 响应式 ============ */
@media (max-width: 992px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-image img {
    height: 340px;
  }

  .feature-block {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  .hero {
    padding: 110px 0 56px;
    min-height: auto;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero-image img {
    height: 280px;
  }

  .feature-block {
    grid-template-columns: 1fr;
  }

  .feature-image img {
    height: 280px;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: var(--bg-warm);
    padding: 24px 28px;
    gap: 14px;
    border-bottom: 1px solid var(--border-soft);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
    animation: fadeInUp 0.35s ease;
  }

  .main-nav.open a {
    font-size: 1.02rem;
    padding: 8px 4px;
  }

  .main-nav.open .nav-cta {
    display: inline-flex;
    justify-content: center;
    margin-top: 8px;
  }

  .cta-banner {
    padding: 56px 24px;
  }
}

@media (max-width: 480px) {
  .cards-grid,
  .content-wall,
  .stats-bar {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-image img {
    height: 220px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}