:root {
      --candy-pink: #FF6B8B;
      --candy-orange: #FFA447;
      --candy-yellow: #FFD93D;
      --candy-mint: #4ECCA3;
      --candy-blue: #4D96FF;
      --candy-purple: #9B59B6;
      --candy-bg: #FAF9F6;
      --candy-card-bg: #FFFFFF;
      --text-main: #22262A;
      --text-muted: #5A626A;
      --border-light: rgba(0, 0, 0, 0.08);
      --shadow-sm: 0 4px 14px rgba(255, 107, 139, 0.08);
      --shadow-md: 0 10px 25px rgba(77, 150, 255, 0.12);
      --shadow-hover: 0 14px 30px rgba(0, 0, 0, 0.09);
      --radius-sm: 8px;
      --radius-md: 14px;
      --radius-lg: 20px;
    }

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

    html {
      scroll-behavior: smooth;
    }

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

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

    .container {
      width: 100%;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      padding-left: 20px;
      padding-right: 20px;
    }

    /* 顶部导航 */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255, 107, 139, 0.15);
    }

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

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

    .brand-logo-wrap {
      max-width: 140px;
      display: flex;
      align-items: center;
    }

    .brand-title-badge {
      background: linear-gradient(135deg, #FFF0F5, #FFF9E6);
      color: #E83E8C;
      font-size: 13px;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 20px;
      border: 1px solid rgba(255, 107, 139, 0.3);
    }

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

    .nav-links a {
      font-size: 14px;
      font-weight: 600;
      color: var(--text-main);
      padding: 8px 12px;
      border-radius: var(--radius-sm);
      transition: all 0.25s ease;
      display: inline-block;
    }

    .nav-links a:hover {
      color: var(--candy-pink);
      background-color: #FFF0F3;
    }

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

    .btn-nav-primary {
      background: linear-gradient(135deg, var(--candy-pink), var(--candy-orange));
      color: #FFFFFF !important;
      padding: 9px 20px;
      font-size: 14px;
      font-weight: 700;
      border-radius: 50px;
      box-shadow: 0 4px 12px rgba(255, 107, 139, 0.3);
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .btn-nav-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(255, 107, 139, 0.4);
    }

    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      font-size: 24px;
      cursor: pointer;
      color: var(--text-main);
      padding: 6px;
    }

    /* 首屏 Hero - 无图片设计，纯色/渐变/几何/动效 */
    .hero-section {
      background: radial-gradient(circle at 10% 20%, #FFF5F7 0%, #F5FBFF 50%, #FCF9E8 100%);
      padding: 70px 0 60px 0;
      position: relative;
      overflow: hidden;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .hero-content {
      text-align: center;
      position: relative;
      z-index: 2;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #FFFFFF;
      border: 1.5px solid var(--candy-pink);
      color: var(--candy-pink);
      font-size: 14px;
      font-weight: 700;
      padding: 6px 18px;
      border-radius: 30px;
      box-shadow: var(--shadow-sm);
      margin-bottom: 24px;
    }

    .hero-title {
      font-size: 38px;
      font-weight: 900;
      line-height: 1.35;
      color: #1A1F2C;
      margin-bottom: 20px;
      letter-spacing: -0.5px;
    }

    .hero-desc {
      font-size: 17px;
      color: var(--text-muted);
      max-width: 820px;
      margin: 0 auto 32px;
      line-height: 1.8;
    }

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

    .hero-btn-official {
      background: linear-gradient(135deg, #FF5E7E, #FF9900);
      color: #FFFFFF !important;
      font-size: 17px;
      font-weight: 800;
      padding: 14px 34px;
      border-radius: 50px;
      box-shadow: 0 8px 22px rgba(255, 94, 126, 0.35);
      transition: all 0.25s ease;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .hero-btn-official:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 28px rgba(255, 94, 126, 0.45);
    }

    .hero-btn-secondary {
      background: #FFFFFF;
      color: var(--text-main);
      font-size: 16px;
      font-weight: 700;
      padding: 14px 30px;
      border-radius: 50px;
      border: 2px solid #E2E8F0;
      box-shadow: 0 4px 14px rgba(0,0,0,0.04);
      transition: all 0.25s ease;
    }

    .hero-btn-secondary:hover {
      border-color: var(--candy-blue);
      color: var(--candy-blue);
      transform: translateY(-2px);
    }

    .hero-metrics-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      max-width: 1040px;
      margin: 0 auto;
    }

    .metric-card {
      background: #FFFFFF;
      border-radius: var(--radius-md);
      padding: 22px 16px;
      text-align: center;
      border-top: 4px solid var(--candy-blue);
      box-shadow: var(--shadow-sm);
      transition: transform 0.25s;
    }

    .metric-card:nth-child(1) { border-top-color: var(--candy-pink); }
    .metric-card:nth-child(2) { border-top-color: var(--candy-orange); }
    .metric-card:nth-child(3) { border-top-color: var(--candy-mint); }
    .metric-card:nth-child(4) { border-top-color: var(--candy-purple); }

    .metric-card:hover {
      transform: translateY(-4px);
    }

    .metric-val {
      font-size: 26px;
      font-weight: 900;
      color: #1F2937;
      margin-bottom: 4px;
    }

    .metric-label {
      font-size: 13px;
      color: var(--text-muted);
      font-weight: 600;
    }

    /* 通用区块排版 */
    .section-wrap {
      padding: 70px 0;
      position: relative;
    }

    .section-wrap.alt-bg {
      background-color: #FFFFFF;
    }

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

    .section-tag {
      display: inline-block;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      padding: 4px 14px;
      border-radius: 20px;
      margin-bottom: 12px;
      letter-spacing: 0.5px;
    }

    .tag-pink { background: #FFE4EC; color: #E83E8C; }
    .tag-blue { background: #E7F1FF; color: #2B78E4; }
    .tag-green { background: #E6F8F2; color: #1E9C75; }
    .tag-orange { background: #FFF1E5; color: #E66A1F; }
    .tag-purple { background: #F3E8FF; color: #8439B0; }

    .section-title {
      font-size: 30px;
      font-weight: 800;
      color: #1A1F2C;
      margin-bottom: 14px;
    }

    .section-intro {
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* 关于我们与平台介绍 */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 36px;
      align-items: center;
    }

    .about-box {
      background: #FFFFFF;
      border-radius: var(--radius-lg);
      padding: 36px;
      border: 1px solid var(--border-light);
      box-shadow: var(--shadow-sm);
    }

    .about-box h3 {
      font-size: 22px;
      font-weight: 800;
      margin-bottom: 16px;
      color: #2D3748;
    }

    .about-box p {
      font-size: 15px;
      color: var(--text-muted);
      margin-bottom: 20px;
      line-height: 1.8;
    }

    .about-features-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      list-style: none;
    }

    .about-feature-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      font-weight: 700;
      color: var(--text-main);
      padding: 10px 14px;
      background: #FAF9F6;
      border-radius: var(--radius-sm);
    }

    .feature-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background-color: var(--candy-pink);
    }

    /* AIGC服务 / 一站式制作 网格 */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .service-card {
      background: #FFFFFF;
      border-radius: var(--radius-md);
      padding: 26px 22px;
      border: 1px solid var(--border-light);
      box-shadow: var(--shadow-sm);
      transition: all 0.25s ease;
      display: flex;
      flex-direction: column;
    }

    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-hover);
      border-color: rgba(255, 107, 139, 0.4);
    }

    .service-badge {
      align-self: flex-start;
      font-size: 12px;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 12px;
      margin-bottom: 14px;
    }

    .service-card h4 {
      font-size: 18px;
      font-weight: 800;
      margin-bottom: 10px;
      color: #1F2937;
    }

    .service-card p {
      font-size: 13.5px;
      color: var(--text-muted);
      line-height: 1.7;
      flex-grow: 1;
      margin-bottom: 14px;
    }

    .service-meta {
      font-size: 12px;
      color: #718096;
      border-top: 1px dashed #EDF2F7;
      padding-top: 10px;
    }

    /* 行业方案与流程 */
    .steps-flow {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
      margin-top: 20px;
    }

    .step-card {
      background: #FFFFFF;
      border-radius: var(--radius-md);
      padding: 24px 16px;
      text-align: center;
      border: 1px solid var(--border-light);
      box-shadow: var(--shadow-sm);
      position: relative;
    }

    .step-num {
      width: 42px;
      height: 42px;
      line-height: 42px;
      border-radius: 50%;
      margin: 0 auto 12px;
      font-weight: 900;
      color: #FFFFFF;
      font-size: 16px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .step-card:nth-child(1) .step-num { background: var(--candy-pink); }
    .step-card:nth-child(2) .step-num { background: var(--candy-orange); }
    .step-card:nth-child(3) .step-num { background: var(--candy-yellow); color: #333; }
    .step-card:nth-child(4) .step-num { background: var(--candy-mint); }
    .step-card:nth-child(5) .step-num { background: var(--candy-blue); }

    .step-card h4 {
      font-size: 15px;
      font-weight: 700;
      margin-bottom: 8px;
    }

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

    /* 案例展示 - 图片合集 */
    .showcase-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      margin-bottom: 30px;
    }

    .showcase-item {
      background: #FFFFFF;
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--border-light);
      display: flex;
      flex-direction: column;
    }

    .showcase-img-wrap {
      width: 100%;
      background: #F0F4F8;
      overflow: hidden;
    }

    .showcase-img-wrap img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.3s ease;
    }

    .showcase-item:hover .showcase-img-wrap img {
      transform: scale(1.03);
    }

    .showcase-info {
      padding: 18px 20px;
    }

    .showcase-info h4 {
      font-size: 16px;
      font-weight: 800;
      margin-bottom: 6px;
    }

    .showcase-info p {
      font-size: 13px;
      color: var(--text-muted);
    }

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

    .banner-card {
      border-radius: var(--radius-sm);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      background: #FFFFFF;
    }

    .banner-card img {
      width: 100%;
      height: auto;
      display: block;
    }

    /* 对比评测 板块 */
    .review-score-banner {
      background: linear-gradient(135deg, #FFF5F7, #FFFBF0);
      border: 2px solid #FFD93D;
      border-radius: var(--radius-lg);
      padding: 30px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 36px;
      box-shadow: var(--shadow-sm);
    }

    .score-left h3 {
      font-size: 24px;
      font-weight: 900;
      color: #1A1F2C;
      margin-bottom: 6px;
    }

    .score-left p {
      font-size: 14px;
      color: var(--text-muted);
    }

    .score-stars {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .star-icons {
      color: #FFA447;
      font-size: 22px;
      letter-spacing: 2px;
    }

    .score-numeric {
      background: linear-gradient(135deg, var(--candy-pink), var(--candy-orange));
      color: #FFFFFF;
      padding: 8px 18px;
      border-radius: 30px;
      font-weight: 900;
      font-size: 20px;
      box-shadow: 0 4px 10px rgba(255, 107, 139, 0.3);
    }

    .table-responsive {
      overflow-x: auto;
      background: #FFFFFF;
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--border-light);
    }

    .compare-table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
      font-size: 14px;
    }

    .compare-table th, .compare-table td {
      padding: 16px 20px;
      border-bottom: 1px solid #EDF2F7;
    }

    .compare-table th {
      background: #FAF9F6;
      font-weight: 800;
      color: #2D3748;
    }

    .highlight-col {
      background: #FFF9FA;
      font-weight: 700;
      color: #E83E8C;
    }

    /* Token 比价板块 */
    .token-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .token-card {
      background: #FFFFFF;
      border-radius: var(--radius-md);
      padding: 24px;
      border: 1px solid var(--border-light);
      box-shadow: var(--shadow-sm);
      text-align: center;
    }

    .token-model-name {
      font-size: 18px;
      font-weight: 800;
      margin-bottom: 8px;
    }

    .token-price {
      font-size: 26px;
      font-weight: 900;
      color: var(--candy-pink);
      margin-bottom: 12px;
    }

    .token-desc {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
    }

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

    .review-card {
      background: #FFFFFF;
      border-radius: var(--radius-md);
      padding: 24px;
      border: 1px solid var(--border-light);
      box-shadow: var(--shadow-sm);
    }

    .review-author {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 14px;
    }

    .avatar-circle {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--candy-pink), var(--candy-blue));
      color: #FFFFFF;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 16px;
    }

    .author-info h5 {
      font-size: 15px;
      font-weight: 700;
    }

    .author-info span {
      font-size: 12px;
      color: var(--text-muted);
    }

    .review-content {
      font-size: 13.5px;
      color: #4A5568;
      line-height: 1.7;
    }

    /* FAQ 折叠面板 */
    .faq-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .faq-item {
      background: #FFFFFF;
      border-radius: var(--radius-md);
      border: 1px solid var(--border-light);
      margin-bottom: 12px;
      box-shadow: var(--shadow-sm);
      overflow: hidden;
    }

    .faq-question {
      padding: 18px 22px;
      font-size: 15.5px;
      font-weight: 700;
      color: #2D3748;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      user-select: none;
      transition: background 0.2s;
    }

    .faq-question:hover {
      background-color: #FFF8F9;
    }

    .faq-indicator {
      font-size: 18px;
      font-weight: 700;
      color: var(--candy-pink);
      transition: transform 0.25s;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      background: #FAF9F6;
    }

    .faq-answer-inner {
      padding: 16px 22px 20px;
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
      border-top: 1px solid #EDF2F7;
    }

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

    /* 文章与资讯 */
    .article-links-strip {
      background: #FFFFFF;
      border-radius: var(--radius-md);
      padding: 24px;
      border: 1px solid var(--border-light);
      box-shadow: var(--shadow-sm);
      margin-top: 20px;
    }

    .article-links-list {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      list-style: none;
      margin-top: 14px;
    }

    .article-link-chip {
      background: #F7FAFC;
      border: 1px solid #E2E8F0;
      border-radius: 30px;
      padding: 8px 18px;
      font-size: 13px;
      font-weight: 600;
      color: #4A5568;
      transition: all 0.2s;
    }

    .article-link-chip:hover {
      border-color: var(--candy-blue);
      color: var(--candy-blue);
      background: #EDF5FF;
    }

    /* 需求表单与联系我们 */
    .contact-wrapper {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 36px;
      align-items: start;
    }

    .form-card {
      background: #FFFFFF;
      border-radius: var(--radius-lg);
      padding: 34px;
      border: 1px solid var(--border-light);
      box-shadow: var(--shadow-sm);
    }

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

    .form-label {
      display: block;
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 8px;
      color: #2D3748;
    }

    .form-control {
      width: 100%;
      padding: 12px 16px;
      border-radius: var(--radius-sm);
      border: 1.5px solid #E2E8F0;
      font-size: 14px;
      outline: none;
      transition: border-color 0.2s;
    }

    .form-control:focus {
      border-color: var(--candy-pink);
    }

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

    .form-submit-btn {
      width: 100%;
      background: linear-gradient(135deg, var(--candy-pink), var(--candy-orange));
      color: #FFFFFF;
      font-size: 16px;
      font-weight: 800;
      padding: 14px;
      border: none;
      border-radius: 50px;
      cursor: pointer;
      box-shadow: 0 4px 14px rgba(255, 107, 139, 0.3);
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .form-submit-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(255, 107, 139, 0.4);
    }

    .contact-info-card {
      background: #FFFFFF;
      border-radius: var(--radius-lg);
      padding: 34px;
      border: 1px solid var(--border-light);
      box-shadow: var(--shadow-sm);
    }

    .contact-info-card h4 {
      font-size: 20px;
      font-weight: 800;
      margin-bottom: 20px;
    }

    .contact-item-row {
      display: flex;
      margin-bottom: 14px;
      font-size: 14px;
    }

    .contact-item-label {
      width: 100px;
      font-weight: 700;
      color: #718096;
    }

    .contact-item-val {
      color: var(--text-main);
      font-weight: 600;
    }

    .qr-container {
      margin-top: 24px;
      text-align: center;
      background: #FFF5F7;
      padding: 20px;
      border-radius: var(--radius-md);
      border: 1px dashed rgba(255, 107, 139, 0.4);
    }

    .qr-container img {
      max-width: 140px;
      height: auto;
      border-radius: var(--radius-sm);
      margin-bottom: 10px;
    }

    .qr-container p {
      font-size: 12.5px;
      color: var(--text-muted);
      font-weight: 600;
    }

    /* 友情链接与页脚 */
    .site-footer {
      background-color: #FFFFFF;
      border-top: 1px solid #EDF2F7;
      padding: 50px 0 30px;
      color: var(--text-main);
    }

    .footer-links-box {
      margin-bottom: 30px;
      padding-bottom: 24px;
      border-bottom: 1px solid #F0F4F8;
    }

    .footer-links-title {
      font-size: 14px;
      font-weight: 800;
      margin-bottom: 12px;
      color: #2D3748;
    }

    .footer-links-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-links-cloud a {
      font-size: 13px;
      color: var(--text-muted);
      background: #FAF9F6;
      padding: 5px 12px;
      border-radius: var(--radius-sm);
      border: 1px solid #E2E8F0;
      transition: all 0.2s;
    }

    .footer-links-cloud a:hover {
      color: var(--candy-pink);
      border-color: var(--candy-pink);
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
      font-size: 13px;
      color: #718096;
    }

    /* 浮动工具栏 */
    .floating-tools {
      position: fixed;
      right: 20px;
      bottom: 30px;
      z-index: 99;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .float-btn {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: #FFFFFF;
      box-shadow: 0 4px 16px rgba(0,0,0,0.15);
      border: 1.5px solid var(--border-light);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 13px;
      font-weight: 800;
      color: var(--candy-pink);
      transition: transform 0.2s;
    }

    .float-btn:hover {
      transform: translateY(-3px);
    }

    /* 响应式媒体查询 */
    @media (max-width: 992px) {
      .hero-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .steps-flow {
        grid-template-columns: repeat(2, 1fr);
      }
      .about-grid, .contact-wrapper {
        grid-template-columns: 1fr;
      }
      .token-grid, .reviews-grid {
        grid-template-columns: 1fr;
      }
      .banners-strip {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: #FFFFFF;
        flex-direction: column;
        padding: 16px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.08);
        border-bottom: 1px solid #EEE;
      }
      .nav-links.active {
        display: flex;
      }
      .mobile-menu-btn {
        display: block;
      }
      .hero-title {
        font-size: 26px;
      }
      .services-grid, .showcase-grid {
        grid-template-columns: 1fr;
      }
      .steps-flow {
        grid-template-columns: 1fr;
      }
      .banners-strip {
        grid-template-columns: 1fr;
      }
      .review-score-banner {
        flex-direction: column;
        text-align: center;
      }
    }