:root {
      --primary: #F59E0B;
      --primary-bright: #FBBF24;
      --primary-light: #FEF3C7;
      --primary-dark: #D97706;
      --accent: #EAB308;
      --bg-main: #FAFAF9;
      --bg-card: #FFFFFF;
      --bg-warm: #FFFBEB;
      --text-dark: #0F172A;
      --text-muted: #475569;
      --text-light: #64748B;
      --border-color: #FDE68A;
      --border-subtle: #E2E8F0;
      --shadow-sm: 0 1px 3px rgba(245, 158, 11, 0.08), 0 1px 2px rgba(0,0,0,0.04);
      --shadow-md: 0 4px 12px rgba(217, 119, 6, 0.12), 0 2px 4px rgba(0,0,0,0.03);
      --shadow-lg: 0 10px 25px -3px rgba(217, 119, 6, 0.16), 0 4px 6px -2px rgba(0,0,0,0.04);
      --radius-sm: 6px;
      --radius-md: 10px;
      --radius-lg: 16px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      background-color: var(--bg-main);
      color: var(--text-dark);
      line-height: 1.6;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    /* 宽度与容器规范：全页统一定义 */
    .container {
      width: 100%;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      padding-left: 20px;
      padding-right: 20px;
    }

    /* 顶部导航 */
    header.site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(10px);
      border-bottom: 2px solid var(--border-color);
      box-shadow: 0 2px 8px rgba(245, 158, 11, 0.08);
    }

    .nav-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }

    .brand-area {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-shrink: 0;
    }

    .ai-page-logo {
      height: 38px;
      width: auto;
      display: block;
    }

    .brand-title-wrap {
      display: flex;
      flex-direction: column;
    }

    .brand-name {
      font-size: 1.25rem;
      font-weight: 800;
      color: var(--text-dark);
      letter-spacing: -0.5px;
    }

    .brand-tagline {
      font-size: 0.72rem;
      color: var(--text-muted);
      font-weight: 500;
    }

    .nav-menu-wrapper {
      display: flex;
      align-items: center;
    }

    .nav-links {
      display: flex;
      align-items: center;
      list-style: none;
      gap: 0;
    }

    .nav-links a {
      display: inline-block;
      padding: 10px 14px;
      font-size: 0.92rem;
      font-weight: 600;
      color: var(--text-dark);
      transition: color 0.2s, background-color 0.2s;
      border-radius: var(--radius-sm);
    }

    .nav-links a:hover {
      color: var(--primary-dark);
      background-color: var(--primary-light);
    }

    .nav-cta {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-left: 12px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      padding: 9px 20px;
      border-radius: var(--radius-md);
      transition: all 0.25s ease;
      cursor: pointer;
      border: 1px solid transparent;
      font-size: 0.92rem;
      white-space: nowrap;
    }

    .btn-primary {
      background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
      color: #FFFFFF;
      box-shadow: 0 4px 10px rgba(245, 158, 11, 0.35);
    }

    .btn-primary:hover {
      background: linear-gradient(135deg, #D97706 0%, #B45309 100%);
      transform: translateY(-2px);
      box-shadow: 0 6px 14px rgba(245, 158, 11, 0.45);
    }

    .btn-glow {
      background: #FBBF24;
      color: #0F172A;
      border: 1px solid #F59E0B;
      font-weight: 800;
    }

    .btn-glow:hover {
      background: #F59E0B;
      color: #FFFFFF;
      transform: translateY(-2px);
    }

    .btn-outline {
      background: #FFFFFF;
      color: var(--text-dark);
      border: 1px solid var(--border-color);
    }

    .btn-outline:hover {
      background: var(--primary-light);
      border-color: var(--primary);
    }

    /* 移动端菜单按钮 */
    .mobile-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 1.5rem;
      color: var(--text-dark);
      cursor: pointer;
      padding: 6px;
    }

    /* 区域通用样式 */
    section {
      padding: 68px 0;
      position: relative;
    }

    .section-header {
      text-align: center;
      max-width: 780px;
      margin: 0 auto 44px;
    }

    .badge-accent {
      display: inline-block;
      padding: 5px 14px;
      background-color: var(--primary-light);
      border: 1px solid var(--border-color);
      border-radius: 30px;
      color: var(--primary-dark);
      font-size: 0.8rem;
      font-weight: 700;
      margin-bottom: 12px;
      text-transform: uppercase;
    }

    .section-title {
      font-size: 2.1rem;
      font-weight: 800;
      color: var(--text-dark);
      letter-spacing: -0.5px;
      margin-bottom: 12px;
    }

    .section-desc {
      font-size: 1.05rem;
      color: var(--text-muted);
      line-height: 1.65;
    }

    /* 首屏 HERO 严格无图片要求：使用黄耀科技感几何及纯代码卡片 */
    .hero-section {
      padding: 80px 0 60px;
      background: radial-gradient(circle at 50% 20%, #FFFBEB 0%, #FEF3C7 50%, #FAFAF9 100%);
      border-bottom: 1px solid var(--border-color);
      position: relative;
    }

    .hero-content {
      text-align: center;
      max-width: 900px;
      margin: 0 auto;
    }

    .hero-h1 {
      font-size: 2.6rem;
      line-height: 1.25;
      font-weight: 900;
      color: #0F172A;
      margin-bottom: 20px;
      letter-spacing: -0.8px;
    }

    .hero-lead {
      font-size: 1.15rem;
      color: var(--text-muted);
      margin-bottom: 32px;
      max-width: 760px;
      margin-left: auto;
      margin-right: auto;
    }

    .hero-action-group {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
      margin-bottom: 40px;
    }

    .btn-hero-large {
      padding: 14px 34px;
      font-size: 1.08rem;
      border-radius: var(--radius-md);
    }

    .hero-stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      margin-top: 36px;
    }

    .stat-card {
      background: #FFFFFF;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 22px 16px;
      box-shadow: var(--shadow-sm);
      text-align: center;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .stat-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-md);
      border-color: var(--primary);
    }

    .stat-val {
      font-size: 1.85rem;
      font-weight: 900;
      color: var(--primary-dark);
      margin-bottom: 4px;
    }

    .stat-label {
      font-size: 0.88rem;
      color: var(--text-muted);
      font-weight: 600;
    }

    /* 平台支持模型跑马灯标签 */
    .model-ticker-wrapper {
      padding: 26px 0;
      background: #FFFFFF;
      border-bottom: 1px solid var(--border-subtle);
      overflow: hidden;
    }

    .ticker-title {
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--text-light);
      text-align: center;
      margin-bottom: 14px;
      letter-spacing: 0.5px;
    }

    .model-tags-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
    }

    .model-tag {
      display: inline-block;
      font-size: 0.82rem;
      font-weight: 600;
      background: var(--bg-warm);
      color: #92400E;
      padding: 5px 12px;
      border-radius: 20px;
      border: 1px solid var(--border-color);
      transition: all 0.2s;
    }

    .model-tag:hover {
      background: var(--primary-light);
      border-color: var(--primary);
      transform: scale(1.04);
    }

    /* 网格卡片通用布局 */
    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .grid-2 {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 28px;
    }

    .grid-4 {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .feature-card {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 28px 24px;
      transition: all 0.25s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
      box-shadow: var(--shadow-sm);
    }

    .feature-card:hover {
      border-color: var(--primary);
      box-shadow: var(--shadow-md);
      transform: translateY(-4px);
    }

    .feature-icon-box {
      width: 48px;
      height: 48px;
      border-radius: var(--radius-md);
      background: var(--primary-light);
      color: var(--primary-dark);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      font-size: 1.25rem;
      margin-bottom: 18px;
      border: 1px solid var(--border-color);
    }

    .feature-card h3 {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 10px;
    }

    .feature-card p {
      font-size: 0.94rem;
      color: var(--text-muted);
      line-height: 1.6;
      flex-grow: 1;
    }

    .feature-tag-list {
      margin-top: 16px;
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }

    .mini-pill {
      font-size: 0.75rem;
      padding: 2px 8px;
      background: #F1F5F9;
      border-radius: 4px;
      color: var(--text-muted);
    }

    /* 案例中心：包含真实图片资源展示 */
    .case-gallery-section {
      background: #FFFFFF;
      border-top: 1px solid var(--border-subtle);
      border-bottom: 1px solid var(--border-subtle);
    }

    .case-banner-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-bottom: 30px;
    }

    .case-image-item {
      border-radius: var(--radius-md);
      overflow: hidden;
      border: 1px solid var(--border-color);
      background: #000;
      position: relative;
      box-shadow: var(--shadow-sm);
    }

    .case-image-item img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease;
    }

    .case-image-item:hover img {
      transform: scale(1.05);
    }

    .case-caption {
      padding: 12px 16px;
      background: #FFFFFF;
      border-top: 1px solid var(--border-subtle);
    }

    .case-caption h4 {
      font-size: 0.96rem;
      font-weight: 700;
      color: var(--text-dark);
    }

    .case-caption p {
      font-size: 0.82rem;
      color: var(--text-muted);
    }

    .material-split-row {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 24px;
      margin-top: 24px;
    }

    .material-card {
      background: #FFFFFF;
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 16px;
      box-shadow: var(--shadow-sm);
    }

    .material-card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      border-radius: var(--radius-sm);
      display: block;
      margin-bottom: 12px;
    }

    /* 对比评测板块：五星 9.9 分高光呈现 */
    .review-score-box {
      background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 100%);
      border: 2px solid var(--primary);
      border-radius: var(--radius-lg);
      padding: 36px;
      margin-bottom: 36px;
      box-shadow: var(--shadow-md);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 24px;
    }

    .score-left {
      flex: 1;
      min-width: 280px;
    }

    .score-grade {
      font-size: 3.2rem;
      font-weight: 900;
      color: #92400E;
      line-height: 1;
      margin-bottom: 8px;
    }

    .stars-icon {
      color: #D97706;
      font-size: 1.4rem;
      letter-spacing: 3px;
      margin-bottom: 8px;
    }

    .score-desc {
      font-size: 0.95rem;
      color: #78350F;
      font-weight: 600;
    }

    .score-highlights {
      flex: 2;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
      min-width: 320px;
    }

    .hl-point {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      font-size: 0.92rem;
      color: #451A03;
      background: rgba(255, 255, 255, 0.7);
      padding: 10px 14px;
      border-radius: var(--radius-sm);
      border: 1px solid var(--border-color);
    }

    .hl-point strong {
      color: #92400E;
    }

    /* 表格组件：对比与Token比价 */
    .table-container {
      background: #FFFFFF;
      border-radius: var(--radius-md);
      border: 1px solid var(--border-subtle);
      overflow-x: auto;
      box-shadow: var(--shadow-sm);
      margin-bottom: 24px;
    }

    table.custom-table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
      font-size: 0.92rem;
    }

    table.custom-table th, table.custom-table td {
      padding: 14px 18px;
      border-bottom: 1px solid var(--border-subtle);
    }

    table.custom-table th {
      background-color: var(--bg-warm);
      color: var(--text-dark);
      font-weight: 800;
      white-space: nowrap;
    }

    table.custom-table tr:last-child td {
      border-bottom: none;
    }

    table.custom-table tr:hover td {
      background-color: #FFFDF5;
    }

    .badge-highlight {
      display: inline-block;
      background: #FEF3C7;
      color: #92400E;
      font-size: 0.78rem;
      font-weight: 700;
      padding: 2px 8px;
      border-radius: 4px;
      border: 1px solid var(--border-color);
    }

    /* 标准流程时间线 */
    .process-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      position: relative;
    }

    .step-card {
      background: #FFFFFF;
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 24px 20px;
      position: relative;
      box-shadow: var(--shadow-sm);
    }

    .step-num {
      font-size: 2rem;
      font-weight: 900;
      color: var(--primary-bright);
      line-height: 1;
      margin-bottom: 12px;
      opacity: 0.8;
    }

    .step-card h4 {
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 8px;
      color: var(--text-dark);
    }

    .step-card p {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.5;
    }

    /* 常见问题 FAQ 折叠手风琴 */
    .faq-wrapper {
      max-width: 900px;
      margin: 0 auto;
    }

    .faq-item {
      background: #FFFFFF;
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      margin-bottom: 12px;
      overflow: hidden;
      transition: border-color 0.2s;
    }

    .faq-item.active {
      border-color: var(--primary);
    }

    .faq-question {
      width: 100%;
      text-align: left;
      padding: 18px 22px;
      background: #FFFFFF;
      border: none;
      font-size: 1rem;
      font-weight: 700;
      color: var(--text-dark);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background-color 0.2s;
    }

    .faq-question:hover {
      background-color: var(--bg-warm);
    }

    .faq-icon {
      font-size: 1.25rem;
      color: var(--primary-dark);
      transition: transform 0.25s ease;
      font-weight: bold;
    }

    .faq-item.active .faq-icon {
      transform: rotate(45deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
      background: #FAFAFA;
      padding: 0 22px;
      color: var(--text-muted);
      font-size: 0.93rem;
      line-height: 1.7;
    }

    .faq-item.active .faq-answer {
      max-height: 240px;
      padding: 16px 22px 20px;
      border-top: 1px solid var(--border-subtle);
    }

    /* 用户评论卡片 */
    .review-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .review-card {
      background: #FFFFFF;
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 24px;
      box-shadow: var(--shadow-sm);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .review-text {
      font-size: 0.92rem;
      color: var(--text-dark);
      line-height: 1.65;
      margin-bottom: 16px;
      font-style: italic;
    }

    .review-author {
      display: flex;
      align-items: center;
      gap: 12px;
      border-top: 1px dashed var(--border-subtle);
      padding-top: 14px;
    }

    .author-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--primary-light);
      color: var(--primary-dark);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 0.9rem;
      border: 1px solid var(--border-color);
    }

    .author-meta h5 {
      font-size: 0.92rem;
      font-weight: 700;
      color: var(--text-dark);
    }

    .author-meta span {
      font-size: 0.78rem;
      color: var(--text-light);
    }

    /* 需求匹配与联系我们表单 */
    .contact-form-layout {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 36px;
      background: #FFFFFF;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-lg);
      padding: 40px;
      box-shadow: var(--shadow-md);
    }

    .form-group {
      margin-bottom: 18px;
    }

    .form-group label {
      display: block;
      font-size: 0.88rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 6px;
    }

    .form-control {
      width: 100%;
      padding: 11px 14px;
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-sm);
      font-size: 0.92rem;
      color: var(--text-dark);
      background: #F8FAFC;
      transition: border-color 0.2s, background-color 0.2s;
      outline: none;
    }

    .form-control:focus {
      border-color: var(--primary);
      background: #FFFFFF;
      box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
    }

    textarea.form-control {
      resize: vertical;
      min-height: 100px;
    }

    .contact-info-panel {
      background: var(--bg-warm);
      border-radius: var(--radius-md);
      padding: 28px;
      border: 1px solid var(--border-color);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .qr-box {
      text-align: center;
      margin: 16px 0;
      background: #FFFFFF;
      padding: 16px;
      border-radius: var(--radius-md);
      border: 1px solid var(--border-color);
      display: inline-block;
      align-self: center;
    }

    .qr-box img {
      width: 140px;
      height: 140px;
      display: block;
      margin: 0 auto 8px;
      border-radius: 4px;
    }

    .contact-item-list {
      list-style: none;
      margin-top: 14px;
      font-size: 0.9rem;
      color: var(--text-dark);
    }

    .contact-item-list li {
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .contact-item-list li strong {
      color: #92400E;
    }

    /* 行业资讯与文章 */
    .articles-box {
      background: #FFFFFF;
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 24px;
      margin-top: 20px;
    }

    .article-links-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 12px;
      margin-top: 16px;
    }

    .article-link-chip {
      display: block;
      background: var(--bg-warm);
      border: 1px solid var(--border-color);
      padding: 10px 14px;
      border-radius: var(--radius-sm);
      font-size: 0.88rem;
      color: #92400E;
      font-weight: 600;
      transition: all 0.2s;
    }

    .article-link-chip:hover {
      background: var(--primary-light);
      border-color: var(--primary);
      transform: translateX(4px);
    }

    /* 友情链接与页脚 */
    footer.site-footer {
      background-color: #0F172A;
      color: #E2E8F0;
      padding: 50px 0 24px;
      border-top: 4px solid var(--primary);
    }

    .footer-top-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 30px;
      margin-bottom: 36px;
    }

    .footer-col h5 {
      font-size: 1rem;
      font-weight: 700;
      color: #FFFFFF;
      margin-bottom: 16px;
      position: relative;
    }

    .footer-col h5::after {
      content: "";
      display: block;
      width: 24px;
      height: 2px;
      background: var(--primary);
      margin-top: 6px;
    }

    .footer-links-list {
      list-style: none;
      font-size: 0.88rem;
    }

    .footer-links-list li {
      margin-bottom: 8px;
    }

    .footer-links-list a {
      color: #94A3B8;
      transition: color 0.2s;
    }

    .footer-links-list a:hover {
      color: var(--primary-bright);
    }

    .friend-links-wrap {
      border-top: 1px solid #1E293B;
      padding-top: 20px;
      margin-bottom: 24px;
      font-size: 0.85rem;
      color: #94A3B8;
    }

    .friend-links-wrap strong {
      color: #FBBF24;
      margin-right: 12px;
    }

    .friend-links-wrap a {
      color: #CBD5E1;
      margin-right: 14px;
      display: inline-block;
      transition: color 0.2s;
    }

    .friend-links-wrap a:hover {
      color: var(--primary-bright);
    }

    .footer-bottom {
      border-top: 1px solid #1E293B;
      padding-top: 20px;
      text-align: center;
      font-size: 0.84rem;
      color: #64748B;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
    }

    .footer-bottom a {
      color: #94A3B8;
    }

    /* 悬浮客服面板 */
    .float-service-anchor {
      position: fixed;
      right: 20px;
      bottom: 30px;
      z-index: 999;
      background: #FFFFFF;
      border: 2px solid var(--primary);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-lg);
      padding: 12px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      cursor: pointer;
    }

    .float-service-anchor img {
      width: 64px;
      height: 64px;
      display: block;
      border-radius: 4px;
    }

    .float-service-anchor span {
      font-size: 0.76rem;
      font-weight: 700;
      color: #92400E;
    }

    /* 响应式断点控制 */
    @media (max-width: 992px) {
      .hero-h1 { font-size: 2.1rem; }
      .grid-3, .grid-4, .hero-stats-grid, .process-steps, .review-grid, .case-banner-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .contact-form-layout, .material-split-row {
        grid-template-columns: 1fr;
      }
      .footer-top-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .mobile-toggle {
        display: block;
      }
      .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: #FFFFFF;
        flex-direction: column;
        padding: 16px;
        border-bottom: 2px solid var(--border-color);
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
      }
      .nav-links.show {
        display: flex;
      }
      .nav-links a {
        width: 100%;
        padding: 10px 16px;
      }
      .grid-3, .grid-4, .hero-stats-grid, .process-steps, .review-grid, .case-banner-grid, .grid-2 {
        grid-template-columns: 1fr;
      }
      .score-highlights {
        grid-template-columns: 1fr;
      }
      .footer-top-grid {
        grid-template-columns: 1fr;
      }
      .section-title {
        font-size: 1.7rem;
      }
    }