:root {
  --primary: #0891b2;
  --accent: #0ea5e9;
  --bg: #ecfeff;
  --text: #083344;
  --radius: 8px;
  --shadow: 0 2px 12px rgba(8, 145, 178, 0.08);
  --border: #cffafe;
  --font-mono: 'SF Mono', 'Cascadia Code', 'Consolas', monospace;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5 { font-weight: 800; letter-spacing: -0.02em; }
a { text-decoration: none; color: inherit; }
/* ===== 点阵背景 ===== */
.dot-bg {
  position: relative;
  background-image: radial-gradient(rgba(8, 145, 178, 0.12) 1px, transparent 1px);
  background-size: 24px 24px;
}
/* ===== 导航栏 ===== */
.navbar-custom {
  background: rgba(236, 254, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar-brand-custom {
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--primary) !important;
  display: flex;
  align-items: center;
  gap: 8px;
}
.navbar-brand-custom i { color: var(--accent); font-size: 1.5rem; }
.nav-link-custom {
  font-weight: 600;
  color: var(--text) !important;
  padding: 8px 16px !important;
  border-radius: var(--radius);
  transition: all 0.2s;
}
.nav-link-custom:hover {
  background: rgba(14, 165, 233, 0.1);
  color: var(--primary) !important;
}
.navbar-toggler { border: none; color: var(--text); font-size: 1.5rem; }
/* ===== Hero 区域 ===== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px 60px;
  position: relative;
  overflow: hidden;
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.15;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}
.hero-sub {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 40px;
  color: #155e75;
  font-weight: 400;
}
.hero-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(8, 145, 178, 0.3);
}
.hero-btn:hover { background: var(--accent); transform: translateY(-3px); box-shadow: 0 8px 30px rgba(14, 165, 233, 0.4); }
/* 浮动装饰 */
.float-deco { position: absolute; pointer-events: none; opacity: 0.3; }
.deco-1 { top: 15%; left: 10%; font-size: 3rem; animation: float 6s ease-in-out infinite; }
.deco-2 { top: 25%; right: 12%; font-size: 2.5rem; animation: float 8s ease-in-out infinite reverse; }
.deco-3 { bottom: 20%; left: 20%; font-size: 2rem; animation: float 7s ease-in-out infinite 1s; }
.deco-4 { bottom: 15%; right: 20%; font-size: 3rem; animation: float 9s ease-in-out infinite 0.5s; }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(8deg); }
}
/* ===== 区块通用 ===== */
.section-padding { padding: 90px 20px; }
.section-label {
  font-family: var(--font-mono);
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--text);
}
.section-desc { color: #0e7490; max-width: 700px; margin: 0 auto 50px; }
/* ===== 对比表格 ===== */
.compare-table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.compare-table th, .compare-table td {
  padding: 18px 24px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.compare-table th {
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}
.compare-table td { font-size: 1rem; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .fa-check { color: #10b981; font-size: 1.2rem; }
.compare-table .fa-xmark { color: #ef4444; font-size: 1.2rem; }
.compare-table .fa-minus { color: #94a3b8; }
.compare-highlight { background: #f0f9ff; font-weight: 600; }
/* ===== 特色卡片 ===== */
.feature-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  height: 100%;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(8, 145, 178, 0.12);
  border-color: var(--accent);
}
.feature-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: #fff;
  font-size: 1.8rem;
}
.feature-card h3 { font-weight: 800; font-size: 1.3rem; margin-bottom: 12px; }
.feature-card p { color: #155e75; font-size: 0.95rem; }
/* ===== 介绍步骤条 ===== */
.steps-wrapper {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.step-item {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  position: relative;
}
.step-number {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  background: var(--primary);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(8, 145, 178, 0.3);
}
.step-content {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  flex: 1;
}
.step-content h4 { font-weight: 700; margin-bottom: 8px; }
.step-content p { color: #155e75; margin: 0; }
/* ===== FAQ ===== */
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 16px;
  cursor: pointer;
  transition: all 0.2s;
}
.faq-item:hover { border-color: var(--accent); }
.faq-item h4 {
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
}
.faq-item h4 i { color: var(--primary); transition: transform 0.3s; }
.faq-item.open h4 i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: #155e75;
}
.faq-item.open .faq-answer { max-height: 300px; padding-top: 16px; }
/* ===== CTA ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 24px;
  padding: 70px 40px;
  text-align: center;
  color: #fff;
  margin: 40px auto;
  max-width: 1000px;
}
.cta-section h2 { font-size: 2.2rem; font-weight: 900; margin-bottom: 16px; }
.cta-section p { opacity: 0.95; font-size: 1.1rem; margin-bottom: 30px; }
.cta-btn {
  background: #fff;
  color: var(--primary);
  border: none;
  padding: 16px 48px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1.1rem;
  transition: all 0.3s;
}
.cta-btn:hover { transform: scale(1.05); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2); }
/* ===== 友情链接 ===== */
.friend-links {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 50px 20px;
  text-align: center;
}
.friend-links h5 {
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
  font-size: 1rem;
}
.friend-links a { color: var(--primary); margin: 0 12px; font-weight: 500; }
/* ===== 页脚 ===== */
.footer-custom {
  background: #083344;
  color: #cffafe;
  padding: 40px 20px;
  text-align: center;
  font-size: 0.9rem;
}
.footer-custom a { color: #67e8f9; margin: 0 10px; }
.footer-custom .brand-footer {
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
  display: block;
}
/* ===== 滚动动效 ===== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
/* 数字动画 */
.stat-number {
  font-family: var(--font-mono);
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--primary);
}
/* ===== 海报 hover ===== */
.poster-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.poster-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.3s;
}
.poster-card:hover img { transform: scale(1.05); }
.poster-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(8, 51, 68, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.poster-card:hover .poster-overlay { opacity: 1; }
.play-btn {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}
.poster-title {
  padding: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
}
/* 响应式 */
@media (max-width: 768px) {
  .section-padding { padding: 60px 16px; }
  .hero-section { min-height: 80vh; }
  .compare-table th, .compare-table td { padding: 12px 10px; font-size: 0.9rem; }
  .step-item { flex-direction: column; gap: 12px; }
  .float-deco { display: none; }
}

/* --- 子页面追加 --- */
/* 本页专属小样式,自动并入站点 CSS */
        .about-hero {
            background: linear-gradient(135deg, #ecfeff 0%, #cffafe 100%);
            padding: 80px 0 60px;
            position: relative;
            overflow: hidden;
        }
.about-hero .hero-title {
            font-size: 2.6rem;
            font-weight: 800;
            color: var(--text);
            line-height: 1.2;
            margin-bottom: 1.2rem;
        }
.about-hero .hero-title span {
            color: var(--primary);
        }
.about-hero .hero-sub {
            font-size: 1.15rem;
            color: #155e75;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
        }
.about-card {
            background: #ffffff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 32px;
            height: 100%;
            box-shadow: var(--shadow);
            transition: transform .25s ease, box-shadow .25s ease;
        }
.about-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(8, 145, 178, 0.14);
        }
.about-card .icon-circle {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: var(--bg);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: var(--primary);
            margin-bottom: 18px;
            border: 1px solid var(--border);
        }
.about-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 12px;
        }
.about-card p {
            color: #155e75;
            font-size: .95rem;
            line-height: 1.75;
            margin-bottom: 0;
        }
.timeline-wrap {
            position: relative;
            padding-left: 30px;
            border-left: 3px solid var(--border);
        }
.timeline-item {
            position: relative;
            margin-bottom: 36px;
            padding-left: 20px;
        }
.timeline-item::before {
            content: '';
            position: absolute;
            left: -38px;
            top: 6px;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: var(--primary);
            border: 3px solid #fff;
            box-shadow: 0 0 0 2px var(--primary);
        }
.timeline-item .year {
            font-family: var(--font-mono);
            font-size: 1rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 6px;
        }
.timeline-item h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 8px;
        }
.timeline-item p {
            color: #155e75;
            font-size: .92rem;
            line-height: 1.7;
        }
.value-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
.value-list li {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 14px 0;
            border-bottom: 1px dashed var(--border);
        }
.value-list li:last-child { border-bottom: none; }
.value-list li i {
            color: var(--primary);
            font-size: 1.1rem;
            margin-top: 4px;
            flex-shrink: 0;
        }
.value-list li .val-title {
            font-weight: 600;
            color: var(--text);
            margin-bottom: 4px;
            font-size: .98rem;
        }
.value-list li .val-desc {
            color: #155e75;
            font-size: .9rem;
            line-height: 1.6;
        }
.stats-row {
            background: #ffffff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 32px;
            box-shadow: var(--shadow);
            text-align: center;
        }
.stats-row .stat-num {
            font-family: var(--font-mono);
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1;
        }
.stats-row .stat-label {
            font-size: .85rem;
            color: #155e75;
            margin-top: 8px;
        }
.cta-about {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: var(--radius);
            padding: 48px 32px;
            text-align: center;
            color: #fff;
        }
.cta-about h3 {
            font-size: 1.6rem;
            font-weight: 800;
            margin-bottom: 12px;
        }
.cta-about p {
            opacity: .92;
            font-size: 1rem;
            margin-bottom: 24px;
        }
.btn-about-cta {
            background: #fff;
            color: var(--primary);
            font-weight: 600;
            padding: 12px 28px;
            border-radius: 50px;
            text-decoration: none;
            display: inline-block;
            transition: transform .2s ease;
        }
.btn-about-cta:hover {
            transform: translateY(-2px);
            color: var(--primary);
        }
.about-hero { padding: 60px 0 40px; }
.about-hero .hero-title { font-size: 1.8rem; }
.stats-row .stat-num { font-size: 1.6rem; }

/* --- 子页面追加 --- */
/* 本页专属样式 - 免责声明页 */
        .disclaimer-hero {
            padding: 120px 0 60px;
            background: linear-gradient(135deg, rgba(8, 145, 178, 0.08) 0%, rgba(14, 165, 233, 0.04) 100%);
            border-bottom: 1px solid var(--border);
        }
.disclaimer-hero .hero-title {
            font-size: 2.6rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 16px;
        }
.disclaimer-hero .hero-sub {
            font-size: 1.15rem;
            color: rgba(8, 51, 68, 0.7);
            max-width: 720px;
            margin: 0 auto;
            line-height: 1.8;
        }
.disclaimer-section {
            padding: 60px 0;
        }
.disclaimer-card {
            background: #ffffff;
            border-radius: var(--radius);
            padding: 36px 40px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            margin-bottom: 28px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
.disclaimer-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(8, 145, 178, 0.12);
        }
.disclaimer-card h2 {
            font-size: 1.45rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 18px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
.disclaimer-card h2 i {
            font-size: 1.2rem;
            color: var(--accent);
        }
.disclaimer-card p {
            color: rgba(8, 51, 68, 0.85);
            line-height: 1.9;
            font-size: 0.98rem;
            margin-bottom: 14px;
        }
.disclaimer-card ul {
            padding-left: 20px;
            color: rgba(8, 51, 68, 0.85);
            line-height: 1.9;
        }
.disclaimer-card ul li {
            margin-bottom: 8px;
        }
.disclaimer-card .highlight-box {
            background: var(--bg);
            border-left: 4px solid var(--primary);
            padding: 14px 20px;
            border-radius: 0 var(--radius) var(--radius) 0;
            margin: 16px 0;
            font-size: 0.95rem;
        }
.disclaimer-card .highlight-box strong {
            color: var(--primary);
        }
.disclaimer-date {
            text-align: center;
            color: rgba(8, 51, 68, 0.5);
            font-size: 0.9rem;
            margin-top: 30px;
            font-style: italic;
        }
.contact-banner {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: var(--radius);
            padding: 40px;
            text-align: center;
            color: #ffffff;
            margin-top: 40px;
        }
.contact-banner h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 12px;
        }
.contact-banner p {
            opacity: 0.95;
            margin-bottom: 20px;
        }
.contact-banner .contact-btn {
            background: #ffffff;
            color: var(--primary);
            padding: 10px 28px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
.contact-banner .contact-btn:hover {
            background: transparent;
            color: #ffffff;
            border-color: #ffffff;
            transform: scale(1.05);
        }
.disclaimer-hero {
                padding: 100px 0 40px;
            }
.disclaimer-hero .hero-title {
                font-size: 1.8rem;
            }
.disclaimer-card {
                padding: 24px 20px;
            }
.disclaimer-card h2 {
                font-size: 1.2rem;
            }

/* --- 子页面追加 --- */
/* 页面专属微调，不影响全站样式 */
    .privacy-section { background: var(--bg); }
.privacy-card {
      background: rgba(255,255,255,0.7);
      backdrop-filter: blur(4px);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 2rem;
      margin-bottom: 2rem;
      box-shadow: var(--shadow);
    }
.privacy-card h3 {
      color: var(--primary);
      font-weight: 700;
      margin-bottom: 1.25rem;
      font-size: 1.5rem;
      letter-spacing: -0.02em;
    }
.privacy-card p, .privacy-card li {
      color: var(--text);
      line-height: 1.75;
      font-size: 1rem;
    }
.privacy-card ul, .privacy-card ol {
      padding-left: 1.25rem;
    }
.privacy-card a {
      color: var(--accent);
      font-weight: 500;
      text-decoration: underline;
      text-underline-offset: 3px;
    }
.privacy-card a:hover { color: var(--primary); }
.privacy-highlight {
      background: rgba(14, 165, 233, 0.08);
      border-left: 4px solid var(--accent);
      padding: 1rem 1.5rem;
      border-radius: 0 var(--radius) var(--radius) 0;
      margin: 1.5rem 0;
    }
.privacy-muted { color: rgba(8, 51, 68, 0.7); }
.table-of-contents {
      background: rgba(255,255,255,0.5);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.5rem 2rem;
      margin-bottom: 2.5rem;
    }
.table-of-contents a {
      color: var(--text);
      text-decoration: none;
      font-weight: 500;
      display: inline-block;
      padding: 0.2rem 0;
      border-bottom: 1px dashed var(--border);
    }
.table-of-contents a:hover { color: var(--primary); border-bottom-color: var(--primary); }

/* --- 子页面追加 --- */
/* 联系页专属样式 */
        .contact-hero {
            position: relative;
            padding: 100px 0 60px;
            background: var(--bg);
            overflow: hidden;
        }
.contact-hero .hero-title {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
.contact-hero .hero-sub {
            font-size: 1.1rem;
            color: var(--text);
            opacity: 0.85;
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
.contact-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 60px;
            position: relative;
            z-index: 1;
        }
.contact-card {
            background: #fff;
            border-radius: var(--radius);
            padding: 35px 30px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
.contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(8, 145, 178, 0.15);
        }
.contact-card .icon-wrap {
            width: 64px;
            height: 64px;
            margin: 0 auto 20px;
            background: var(--bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--primary);
        }
.contact-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 12px;
        }
.contact-card p {
            font-size: 0.95rem;
            color: var(--text);
            opacity: 0.75;
            line-height: 1.6;
            margin-bottom: 0;
        }
.contact-card a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            word-break: break-all;
        }
.contact-card a:hover {
            text-decoration: underline;
        }
.form-wrapper {
            background: #fff;
            border-radius: var(--radius);
            padding: 45px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            margin-top: 50px;
            position: relative;
            z-index: 1;
        }
.form-label-custom {
            font-weight: 600;
            color: var(--text);
            margin-bottom: 8px;
            display: block;
        }
.form-control-custom {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid var(--border);
            border-radius: var(--radius);
            font-size: 0.95rem;
            color: var(--text);
            background: var(--bg);
            transition: border-color 0.2s ease;
        }
.form-control-custom:focus {
            outline: none;
            border-color: var(--primary);
        }
.form-control-custom::placeholder {
            color: rgba(8, 51, 68, 0.4);
        }
textarea.form-control-custom {
            min-height: 150px;
            resize: vertical;
        }
.btn-submit {
            background: var(--primary);
            color: #fff;
            border: none;
            padding: 12px 35px;
            font-size: 1rem;
            font-weight: 600;
            border-radius: var(--radius);
            transition: background 0.3s ease;
            cursor: pointer;
        }
.btn-submit:hover {
            background: var(--accent);
        }
.faq-mini {
            margin-top: 50px;
        }
.faq-mini .faq-item {
            background: #fff;
            border-radius: var(--radius);
            padding: 20px 25px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            margin-bottom: 15px;
        }
.faq-mini .faq-item h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 8px;
        }
.faq-mini .faq-item p {
            font-size: 0.9rem;
            color: var(--text);
            opacity: 0.8;
            margin-bottom: 0;
        }
.contact-grid {
                grid-template-columns: 1fr;
                max-width: 450px;
                margin-left: auto;
                margin-right: auto;
            }
.form-wrapper {
                padding: 30px;
            }
.contact-hero {
                padding: 80px 0 40px;
            }
.contact-hero .hero-title {
                font-size: 2rem;
            }