```css
/* ============================================
   少女与狗 · 韩剧胶片风设计系统
   ============================================ */
:root {
  --bg: #FAF5EC;
  --bg-alt: #F0EBE0;
  --bg-green: #E8EFEA;
  --coral: #E86B5A;
  --teal: #2D6A6A;
  --gold: #E8B44A;
  --ink: #3B3530;
  --white: #FFFFFF;
  --shadow-sm: 0 4px 16px rgba(59, 53, 48, 0.06);
  --shadow-md: 0 8px 32px rgba(59, 53, 48, 0.09);
  --shadow-lg: 0 16px 48px rgba(59, 53, 48, 0.13);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

/* 细腻噪点纹理 */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(59, 53, 48, 0.06) 0.5px, transparent 0.5px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 10000;
  opacity: 0.35;
}

/* 自定义滚动条 */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--coral), var(--gold));
  border-radius: 20px;
}
::-webkit-scrollbar-thumb:hover { background: var(--coral); }

::selection {
  background: var(--gold);
  color: var(--ink);
}

/* ============================================
   核心布局
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
  position: relative;
}

.section:nth-child(even) {
  background: var(--bg-green);
}

/* ============================================
   导航 — 固定顶部 · 胶片标签感
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(250, 245, 236, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(59, 53, 48, 0.06);
  box-shadow: 0 2px 24px rgba(59, 53, 48, 0.03);
}

.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.2rem;
  text-decoration: none;
  color: var(--ink);
  letter-spacing: 0.5px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: linear-gradient(135deg, var(--coral), var(--gold));
  color: #fff;
  box-shadow: 0 4px 12px rgba(230, 107, 90, 0.3);
  transform: rotate(-6deg);
  transition: transform 0.3s;
}

.logo:hover .logo-icon {
  transform: rotate(6deg) scale(1.05);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.2s;
  position: relative;
  padding: 4px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--coral);
  border-radius: 4px;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-nav a:hover {
  color: var(--coral);
}

.main-nav a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 8px 22px;
  border-radius: 40px;
  color: #fff !important;
  font-weight: 600;
  background: linear-gradient(135deg, var(--coral), #f0976a);
  box-shadow: 0 4px 16px rgba(230, 107, 90, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230, 107, 90, 0.4);
}

.nav-cta::after { display: none; }

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  background-color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
}

.menu-toggle:hover {
  box-shadow: var(--shadow-md);
}

.menu-toggle::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--ink);
  border-radius: 4px;
  box-shadow: 0 8px 0 var(--ink);
}

/* ============================================
   Hero 区域
   ============================================ */
.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  gap: 56px;
  padding-top: 68px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 180, 74, 0.22) 0%, transparent 70%);
  right: -120px;
  top: 10%;
  z-index: 0;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border: 2px dashed rgba(230, 107, 90, 0.25);
  border-radius: 50%;
  left: -60px;
  bottom: -20px;
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  max-width: 720px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  font-style: normal;
  padding: 8px 20px;
  border-radius: 40px;
  margin-bottom: 20px;
  background: var(--gold);
  color: var(--ink);
  letter-spacing: 2px;
  box-shadow: 0 4px 14px rgba(232, 180, 74, 0.35);
  text-transform: uppercase;
}

.hero h1 {
  font-size: 3.2rem;
  line-height: 1.15;
  margin-bottom: 20px;
  font-family: 'Songti SC', 'Noto Serif SC', 'SimSun', Georgia, serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.hero h1 .text-accent {
  color: var(--coral);
  position: relative;
  display: inline-block;
}

.hero h1 .text-accent::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 10px;
  background: rgba(232, 180, 74, 0.4);
  border-radius: 12px;
  z-index: -1;
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.7;
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-image {
  flex: 0 0 40%;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  border: 6px solid #fff;
  box-shadow: var(--shadow-lg);
  transform: rotate(2deg);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s;
  animation: float-soft 5s ease-in-out infinite;
}

.hero-image:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow: 0 24px 64px rgba(59, 53, 48, 0.16);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes float-soft {
  0%, 100% { transform: rotate(2deg) translateY(0); }
  50% { transform: rotate(2deg) translateY(-10px); }
}

/* ============================================
   按钮
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s, background 0.25s;
  font-size: 0.95rem;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--coral), #f0976a);
  box-shadow: 0 8px 24px rgba(230, 107, 90, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 12px 32px rgba(230, 107, 90, 0.45);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--teal);
  color: var(--teal);
  box-shadow: none;
}

.btn-outline:hover {
  background: rgba(45, 106, 106, 0.06);
  border-color: var(--teal);
  box-shadow: 0 8px 20px rgba(45, 106, 106, 0.15);
}

/* ============================================
   Section 标签与标题
   ============================================ */
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  padding: 6px 18px;
  background: rgba(232, 180, 74, 0.22);
  border: 2px solid rgba(232, 180, 74, 0.55);
  border-radius: 40px;
  color: #8a6a1a;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 14px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.3;
  position: relative;
}

.section-title::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--coral), var(--gold));
  transform: rotate(20deg);
  margin-right: 14px;
  box-shadow: 0 2px 8px rgba(230, 107, 90, 0.3);
}

.section-desc {
  max-width: 600px;
  opacity: 0.7;
  margin-bottom: 44px;
  line-height: 1.8;
}

.section-title.text-center::before {
  margin-right: 12px;
}

/* ============================================
   卡片网格 — 拍立得相纸效果
   ============================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.category-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(59, 53, 48, 0.04);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  cursor: pointer;
}

.category-card::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(59, 53, 48, 0.05);
  border-radius: 14px;
  pointer-events: none;
}

.category-card:nth-child(1) { transform: rotate(-1.2deg); }
.category-card:nth-child(2) { transform: rotate(0.6deg); }
.category-card:nth-child(3) { transform: rotate(1deg); }
.category-card:nth-child(4) { transform: rotate(-0.4deg); }

.category-card:hover {
  transform: rotate(0deg) translateY(-6px);
  box-shadow: var(--shadow-md);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
  background: linear-gradient(135deg, var(--bg), #f6e5d8);
  box-shadow: 0 4px 12px rgba(59, 53, 48, 0.04) inset;
}

.category-card:nth-child(1) .card-icon {
  background: rgba(230, 107, 90, 0.14);
  color: var(--coral);
}
.category-card:nth-child(2) .card-icon {
  background: rgba(45, 106, 106, 0.14);
  color: var(--teal);
}
.category-card:nth-child(3) .card-icon {
  background: rgba(232, 180, 74, 0.2);
  color: #a8780a;
}
.category-card:nth-child(4) .card-icon {
  background: rgba(230, 107, 90, 0.14);
  color: var(--coral);
}

.card-link {
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
  margin-top: 4px;
}

.card-link::after {
  content: '→';
  transition: transform 0.25s;
  font-size: 1.1rem;
}

.card-link:hover {
  color: var(--coral);
}

.card-link:hover::after {
  transform: translateX(5px);
}

/* ============================================
   特性块
   ============================================ */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.feature-image {
  border-radius: 24px;
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: var(--shadow-md);
  transition: transform 0.4s, box-shadow 0.4s;
  transform: rotate(-1deg);
}

.feature-image:hover {
  transform: rotate(0deg) scale(1.01);
  box-shadow: var(--shadow-lg);
}

.feature-block:nth-child(even) .feature-image {
  transform: rotate(1deg);
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-text {
  padding: 8px 0;
}

.feature-text .section-title {
  margin-bottom: 16px;
}

.feature-text p {
  opacity: 0.72;
  line-height: 1.8;
  margin-bottom: 16px;
}

.feature-list {
  list-style: none;
  margin-top: 12px;
}

.feature-list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  border-bottom: 1px dashed rgba(59, 53, 48, 0.1);
}

.feature-list li::before {
  content: '✓';
  font-weight: 700;
  color: var(--teal);
  background: rgba(45, 106, 106, 0.14);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ============================================
   数据条
   ============================================ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  background: #fff;
  padding: 32px 24px;
  border-radius: 20px;
  border: 1px solid rgba(59, 53, 48, 0.04);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.stat-item::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(59, 53, 48, 0.04);
  border-radius: 16px;
  pointer-events: none;
}

.stat-item:nth-child(1) { transform: rotate(-0.8deg); }
.stat-item:nth-child(2) { transform: rotate(0.5deg); }
.stat-item:nth-child(3) { transform: rotate(-0.4deg); }
.stat-item:nth-child(4) { transform: rotate(0.7deg); }

.stat-item:hover {
  transform: rotate(0deg) translateY(-5px);
  box-shadow: var(--shadow-md);
}

.stat-number {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--coral);
  font-family: 'Songti SC', Georgia, serif;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.6;
  margin-top: 8px;
  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: 16px;
  overflow: hidden;
  border: none;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s, box-shadow 0.35s;
  display: flex;
  flex-direction: column;
}

.content-wall-item:nth-child(odd) {
  transform: rotate(-1deg);
}

.content-wall-item:nth-child(even) {
  transform: rotate(1deg);
}

.content-wall-item:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow: var(--shadow-md);
}

.content-wall-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-bottom: 4px solid #fff;
}

.content-wall-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.content-wall-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}

.content-wall-body p {
  font-size: 0.85rem;
  opacity: 0.6;
  line-height: 1.7;
  margin-bottom: 12px;
  flex: 1;
}

.content-wall-body a {
  color: var(--teal);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.content-wall-body a::after {
  content: '→';
  transition: transform 0.25s;
}

.content-wall-body a:hover {
  color: var(--coral);
}

.content-wall-body a:hover::after {
  transform: translateX(4px);
}

/* ============================================
   FAQ 手风琴
   ============================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: none;
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s, transform 0.3s;
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.faq-item .faq-question {
  padding: 18px 24px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--ink);
  font-size: 1rem;
}

.faq-question::after {
  content: '+';
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--coral);
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}

.faq-item.open .faq-question::after {
  content: '−';
  transform: rotate(90deg);
  color: var(--teal);
}

.faq-item .faq-answer {
  padding: 0 24px 20px;
  display: none;
  opacity: 0.7;
  line-height: 1.8;
  font-size: 0.92rem;
}

.faq-item.open .faq-answer {
  display: block;
  animation: fade-in 0.3s ease;
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   CTA 横幅
   ============================================ */
.cta-banner {
  padding: 60px 32px;
  text-align: center;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, var(--coral) 0%, #f0976a 55%, var(--gold) 100%);
  box-shadow: 0 16px 48px rgba(230, 107, 90, 0.35);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 4px dashed rgba(255, 255, 255, 0.25);
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.cta-banner h2 {
  color: #fff;
  font-size: 2.4rem;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  font-family: 'Songti SC', Georgia, serif;
  letter-spacing: -0.02em;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 520px;
  margin: 0 auto 28px;
  font-size: 1.05rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.cta-banner .btn-primary {
  background: #fff;
  color: var(--coral);
  box-shadow: 0 8px 28px rgba(255, 255, 255, 0.25);
  position: relative;
  z-index: 1;
}

.cta-banner .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255, 255, 255, 0.4);
}

/* ============================================
   页脚
   ============================================ */
.site-footer {
  background: var(--bg-green);
  padding: 64px 0 28px;
  margin-top: 40px;
  border-top: 1px solid rgba(45, 106, 106, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  opacity: 0.7;
  line-height: 1.8;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.72;
  padding: 4px 0;
  transition: opacity 0.2s, color 0.2s, padding-left 0.2s;
}

.footer-col a:hover {
  opacity: 1;
  color: var(--coral);
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(59, 53, 48, 0.08);
  margin-top: 48px;
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.6;
}

/* ============================================
   工具类
   ============================================ */
.text-accent {
  color: var(--coral);
}

.text-center {
  text-align: center;
}

.seo-description {
  max-width: 600px;
  margin: 0 auto 48px;
  opacity: 0.7;
  text-align: center;
  line-height: 1.8;
}

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ============================================
   响应式 — 移动优先
   ============================================ */
@media (max-width: 768px) {
  .feature-block {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .features .feature-block:nth-child(2) .feature-image {
    order: -1;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    width: 100%;
    background: var(--bg);
    padding: 24px;
    gap: 20px;
    box-shadow: 0 16px 40px rgba(59, 53, 48, 0.1);
    border-bottom: 1px solid rgba(59, 53, 48, 0.06);
    z-index: 999;
  }

  .main-nav.open .nav-cta {
    text-align: center;
    padding: 10px 24px;
  }

  .hero {
    flex-direction: column;
    padding-top: 100px;
    gap: 40px;
    text-align: center;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-image {
    flex: none;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .cta-banner h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .cards-grid,
  .content-wall,
  .stats-bar {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    justify-content: center;
    width: 100%;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .cta-banner {
    padding: 40px 20px;
  }

  .cta-banner h2 {
    font-size: 1.5rem;
  }

  .feature-block {
    gap: 32px;
  }

  .section {
    padding: 48px 0;
  }

  .faq-item .faq-question {
    padding: 16px 20px;
    font-size: 0.92rem;
  }

  .faq-item .faq-answer {
    padding: 0 20px 16px;
  }
}