:root {
      --primary-color: #ff5e00;
      --primary-hover: #e05200;
      --primary-light: #fff5ee;
      --primary-gradient: linear-gradient(135deg, #ff6b08 0%, #ff8c00 100%);
      --accent-color: #ff3b00;
      --text-main: #1e293b;
      --text-secondary: #475569;
      --text-muted: #64748b;
      --bg-light: #fafaf9;
      --bg-card: #ffffff;
      --border-color: #f1f5f9;
      --border-hover: #fed7aa;
      --shadow-sm: 0 2px 8px rgba(255, 94, 0, 0.06);
      --shadow-md: 0 10px 25px -5px rgba(255, 94, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
      --shadow-lg: 0 20px 30px -10px rgba(255, 94, 0, 0.15);
      --radius-sm: 8px;
      --radius-md: 14px;
      --radius-lg: 20px;
    }
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    html {
      scroll-behavior: smooth;
      font-size: 16px;
    }
    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      background-color: var(--bg-light);
      color: var(--text-main);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    .site-wrapper {
      width: 100%;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .main-container {
      width: 100%;
      max-width: 1240px;
      padding: 0 24px;
      margin: 0 auto;
    }
    a {
      color: inherit;
      text-decoration: none;
      transition: all 0.25s ease;
    }
    header.site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255, 94, 0, 0.1);
      width: 100%;
    }
    .navbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 76px;
    }
    .nav-brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 1.35rem;
      font-weight: 800;
      color: var(--text-main);
    }
    .nav-brand img {
      max-height: 44px;
      width: auto;
      object-fit: contain;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 0;
      list-style: none;
    }
    .nav-links li a {
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--text-secondary);
      padding: 10px 14px;
      border-radius: var(--radius-sm);
      display: inline-block;
    }
    .nav-links li a:hover {
      color: var(--primary-color);
      background: var(--primary-light);
    }
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .btn-nav-primary {
      background: var(--primary-gradient);
      color: #ffffff !important;
      padding: 10px 20px;
      font-size: 0.95rem;
      font-weight: 700;
      border-radius: 50px;
      box-shadow: 0 4px 14px rgba(255, 94, 0, 0.3);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: none;
      cursor: pointer;
    }
    .btn-nav-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 18px rgba(255, 94, 0, 0.4);
    }
    .menu-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 1.6rem;
      color: var(--text-main);
      cursor: pointer;
    }
    .hero-section {
      width: 100%;
      background: radial-gradient(circle at 50% 10%, #fff2e8 0%, #fffaf5 60%, #fafaf9 100%);
      padding: 75px 0 65px;
      position: relative;
      border-bottom: 1px solid rgba(255, 94, 0, 0.08);
      overflow: hidden;
    }
    .hero-badge-wrap {
      display: flex;
      justify-content: center;
      margin-bottom: 20px;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #ffffff;
      border: 1px solid var(--border-hover);
      padding: 6px 18px;
      border-radius: 30px;
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--primary-color);
      box-shadow: var(--shadow-sm);
    }
    .hero-content {
      text-align: center;
      max-width: 980px;
      margin: 0 auto;
    }
    .hero-content h1 {
      font-size: 2.8rem;
      font-weight: 900;
      line-height: 1.25;
      color: #0f172a;
      margin-bottom: 20px;
      letter-spacing: -0.5px;
    }
    .hero-content h1 span {
      background: var(--primary-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .hero-content p {
      font-size: 1.15rem;
      color: var(--text-secondary);
      line-height: 1.7;
      margin-bottom: 34px;
      max-width: 820px;
      margin-left: auto;
      margin-right: auto;
    }
    .hero-buttons {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
      margin-bottom: 40px;
    }
    .btn-hero-main {
      background: var(--primary-gradient);
      color: #ffffff !important;
      font-size: 1.12rem;
      font-weight: 700;
      padding: 15px 36px;
      border-radius: 50px;
      box-shadow: 0 10px 24px rgba(255, 94, 0, 0.35);
      border: none;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .btn-hero-main:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 28px rgba(255, 94, 0, 0.45);
    }
    .btn-hero-outline {
      background: #ffffff;
      color: var(--text-main);
      font-size: 1.12rem;
      font-weight: 700;
      padding: 15px 32px;
      border-radius: 50px;
      border: 1px solid #cbd5e1;
      box-shadow: var(--shadow-sm);
    }
    .btn-hero-outline:hover {
      background: var(--primary-light);
      border-color: var(--primary-color);
      color: var(--primary-color);
    }
    .hero-stat-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-top: 20px;
    }
    .stat-card {
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(8px);
      border: 1px solid var(--border-hover);
      border-radius: var(--radius-md);
      padding: 22px;
      text-align: center;
      box-shadow: var(--shadow-sm);
    }
    .stat-num {
      font-size: 2.1rem;
      font-weight: 800;
      color: var(--primary-color);
      line-height: 1.1;
      margin-bottom: 6px;
    }
    .stat-label {
      font-size: 0.9rem;
      color: var(--text-secondary);
      font-weight: 600;
    }
    section.page-section {
      width: 100%;
      padding: 85px 0;
      border-bottom: 1px solid #f1f5f9;
      position: relative;
    }
    .section-header {
      text-align: center;
      max-width: 780px;
      margin: 0 auto 50px;
    }
    .section-eyebrow {
      display: inline-block;
      font-size: 0.84rem;
      font-weight: 700;
      color: var(--primary-color);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 10px;
      padding: 4px 12px;
      background: var(--primary-light);
      border-radius: 20px;
    }
    .section-header h2 {
      font-size: 2.2rem;
      font-weight: 800;
      color: #0f172a;
      line-height: 1.3;
      margin-bottom: 14px;
    }
    .section-header p {
      font-size: 1.05rem;
      color: var(--text-secondary);
      line-height: 1.7;
    }
    .service-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .service-card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 30px;
      box-shadow: var(--shadow-sm);
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }
    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
      border-color: var(--border-hover);
    }
    .service-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      background: var(--primary-gradient);
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .service-card:hover::before {
      opacity: 1;
    }
    .service-icon {
      width: 52px;
      height: 52px;
      border-radius: 12px;
      background: var(--primary-light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      color: var(--primary-color);
      margin-bottom: 20px;
    }
    .service-card h3 {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 12px;
    }
    .service-card p {
      font-size: 0.94rem;
      color: var(--text-secondary);
      line-height: 1.65;
      flex-grow: 1;
    }
    .model-tags-container {
      background: #ffffff;
      border: 1px solid var(--border-hover);
      border-radius: var(--radius-md);
      padding: 36px;
      box-shadow: var(--shadow-sm);
    }
    .model-badge-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: center;
      margin-top: 15px;
    }
    .model-badge {
      background: #fff8f3;
      border: 1px solid #ffd8bf;
      color: #9a3412;
      padding: 8px 16px;
      border-radius: 30px;
      font-size: 0.9rem;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .model-badge:hover {
      background: var(--primary-color);
      color: #ffffff;
      border-color: var(--primary-color);
    }
    .image-showcase-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 30px;
    }
    .showcase-item {
      background: #ffffff;
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--border-color);
    }
    .showcase-media {
      width: 100%;
      height: 240px;
      overflow: hidden;
      position: relative;
      background: #f1f5f9;
    }
    .showcase-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .showcase-item:hover .showcase-media img {
      transform: scale(1.04);
    }
    .showcase-content {
      padding: 20px;
    }
    .showcase-content h3 {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 8px;
    }
    .showcase-content p {
      font-size: 0.9rem;
      color: var(--text-secondary);
    }
    .rating-banner {
      background: linear-gradient(135deg, #fff2e8 0%, #ffe0cc 100%);
      border: 1px solid #ffbb96;
      border-radius: var(--radius-lg);
      padding: 36px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 35px;
    }
    .rating-left h3 {
      font-size: 1.6rem;
      font-weight: 800;
      color: #7c2d12;
      margin-bottom: 8px;
    }
    .rating-left p {
      color: #9a3412;
      font-size: 1rem;
    }
    .rating-score-box {
      text-align: center;
      background: #ffffff;
      padding: 16px 28px;
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-sm);
    }
    .rating-big-num {
      font-size: 2.6rem;
      font-weight: 900;
      color: var(--primary-color);
      line-height: 1;
    }
    .rating-stars {
      color: #faad14;
      font-size: 1.2rem;
      margin-top: 4px;
    }
    .table-container {
      overflow-x: auto;
      background: #ffffff;
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--border-color);
    }
    .comparison-table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
    }
    .comparison-table th,
    .comparison-table td {
      padding: 18px 24px;
      border-bottom: 1px solid #f1f5f9;
      font-size: 0.95rem;
    }
    .comparison-table th {
      background: #f8fafc;
      font-weight: 700;
      color: var(--text-main);
    }
    .comparison-table tr:hover td {
      background-color: #fffbf8;
    }
    .badge-check {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: #15803d;
      font-weight: 700;
    }
    .badge-cross {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: #94a3b8;
    }
    .steps-container {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
    .step-card {
      background: #ffffff;
      border-radius: var(--radius-md);
      padding: 28px 20px;
      border: 1px solid var(--border-color);
      position: relative;
      text-align: center;
      box-shadow: var(--shadow-sm);
    }
    .step-num {
      width: 44px;
      height: 44px;
      background: var(--primary-gradient);
      color: #ffffff;
      font-weight: 800;
      font-size: 1.2rem;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
    }
    .step-card h3 {
      font-size: 1.12rem;
      margin-bottom: 10px;
      color: var(--text-main);
    }
    .step-card p {
      font-size: 0.88rem;
      color: var(--text-secondary);
      line-height: 1.6;
    }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .testimonial-card {
      background: #ffffff;
      border-radius: var(--radius-md);
      border: 1px solid var(--border-color);
      padding: 26px;
      box-shadow: var(--shadow-sm);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .testimonial-card:hover {
      border-color: var(--border-hover);
      box-shadow: var(--shadow-md);
    }
    .testimonial-text {
      font-size: 0.94rem;
      color: var(--text-secondary);
      line-height: 1.7;
      margin-bottom: 20px;
      position: relative;
    }
    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 12px;
      border-top: 1px solid #f1f5f9;
      padding-top: 14px;
    }
    .author-avatar {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: #fed7aa;
      color: #c2410c;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
    }
    .author-info h4 {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--text-main);
    }
    .author-info span {
      font-size: 0.82rem;
      color: var(--text-muted);
    }
    .faq-list {
      max-width: 900px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .faq-item {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: border-color 0.25s ease;
    }
    .faq-item.active {
      border-color: var(--border-hover);
    }
    .faq-question {
      padding: 20px 24px;
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--text-main);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      user-select: none;
    }
    .faq-question:hover {
      color: var(--primary-color);
    }
    .faq-icon {
      font-size: 1.3rem;
      color: var(--primary-color);
      transition: transform 0.3s ease;
    }
    .faq-item.active .faq-icon {
      transform: rotate(45deg);
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease-out;
      background: #fffcf9;
    }
    .faq-answer-inner {
      padding: 0 24px 22px;
      font-size: 0.95rem;
      color: var(--text-secondary);
      line-height: 1.7;
    }
    .form-section-layout {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 40px;
      background: #ffffff;
      border-radius: var(--radius-lg);
      padding: 45px;
      border: 1px solid var(--border-hover);
      box-shadow: var(--shadow-md);
    }
    .form-info-side h3 {
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 16px;
    }
    .form-info-side p {
      color: var(--text-secondary);
      line-height: 1.7;
      margin-bottom: 24px;
    }
    .contact-card-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 18px;
    }
    .contact-card-icon {
      width: 40px;
      height: 40px;
      background: var(--primary-light);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary-color);
      font-size: 1.1rem;
      flex-shrink: 0;
    }
    .contact-card-text strong {
      display: block;
      color: var(--text-main);
      font-size: 0.95rem;
    }
    .contact-card-text span {
      font-size: 0.88rem;
      color: var(--text-muted);
    }
    .custom-form {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .form-group {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .form-group label {
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--text-main);
    }
    .form-input,
    .form-select,
    .form-textarea {
      width: 100%;
      padding: 12px 16px;
      border: 1px solid #cbd5e1;
      border-radius: var(--radius-sm);
      font-size: 0.95rem;
      color: var(--text-main);
      background-color: #f8fafc;
      transition: all 0.2s ease;
      font-family: inherit;
    }
    .form-input:focus,
    .form-select:focus,
    .form-textarea:focus {
      outline: none;
      border-color: var(--primary-color);
      background-color: #ffffff;
      box-shadow: 0 0 0 3px rgba(255, 94, 0, 0.15);
    }
    .form-textarea {
      resize: vertical;
      min-height: 110px;
    }
    .btn-form-submit {
      background: var(--primary-gradient);
      color: #ffffff;
      border: none;
      padding: 14px 28px;
      border-radius: var(--radius-sm);
      font-size: 1.05rem;
      font-weight: 700;
      cursor: pointer;
      box-shadow: 0 8px 20px rgba(255, 94, 0, 0.3);
      transition: all 0.25s ease;
    }
    .btn-form-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 24px rgba(255, 94, 0, 0.4);
    }
    .article-links-box {
      background: #ffffff;
      border-radius: var(--radius-md);
      padding: 24px;
      border: 1px solid var(--border-color);
      margin-top: 20px;
    }
    .article-links-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 12px;
    }
    .article-pill {
      background: #f8fafc;
      padding: 8px 16px;
      border-radius: 8px;
      font-size: 0.88rem;
      color: var(--text-secondary);
      border: 1px solid #e2e8f0;
      display: inline-block;
    }
    .article-pill:hover {
      background: var(--primary-light);
      border-color: var(--primary-color);
      color: var(--primary-color);
    }
    .agent-card-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .agent-card {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 32px 24px;
      box-shadow: var(--shadow-sm);
      text-align: center;
    }
    .agent-card h3 {
      font-size: 1.25rem;
      color: var(--text-main);
      margin-bottom: 12px;
    }
    .agent-card p {
      font-size: 0.92rem;
      color: var(--text-secondary);
      line-height: 1.65;
    }
    footer.site-footer {
      width: 100%;
      background: #1e293b;
      color: #f1f5f9;
      padding: 65px 0 35px;
    }
    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 40px;
      margin-bottom: 45px;
    }
    .footer-col h4 {
      font-size: 1.05rem;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 8px;
    }
    .footer-col h4::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 28px;
      height: 2px;
      background: var(--primary-color);
    }
    .footer-col p {
      color: #94a3b8;
      font-size: 0.9rem;
      line-height: 1.7;
      margin-bottom: 16px;
    }
    .footer-links-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .footer-links-list li a {
      color: #94a3b8;
      font-size: 0.9rem;
    }
    .footer-links-list li a:hover {
      color: #ff8c00;
      padding-left: 4px;
    }
    .footer-qr-wrap {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }
    .footer-qr-wrap img {
      width: 110px;
      height: 110px;
      background: #ffffff;
      padding: 4px;
      border-radius: 8px;
    }
    .footer-bottom {
      border-top: 1px solid #334155;
      padding-top: 25px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
      font-size: 0.85rem;
      color: #94a3b8;
    }
    .friend-links-row {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      align-items: center;
    }
    .friend-links-row a {
      color: #cbd5e1;
    }
    .friend-links-row a:hover {
      color: var(--primary-color);
    }
    .floating-widget {
      position: fixed;
      right: 24px;
      bottom: 30px;
      z-index: 999;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .float-btn {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: #ffffff;
      color: var(--primary-color);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      border: 1px solid #fed7aa;
      transition: all 0.25s ease;
      position: relative;
    }
    .float-btn:hover {
      background: var(--primary-gradient);
      color: #ffffff;
      transform: scale(1.08);
    }
    .float-qr-panel {
      position: absolute;
      right: 60px;
      bottom: 0;
      background: #ffffff;
      border: 1px solid #e2e8f0;
      box-shadow: var(--shadow-md);
      padding: 14px;
      border-radius: var(--radius-md);
      display: none;
      flex-direction: column;
      align-items: center;
      width: 140px;
      text-align: center;
    }
    .float-qr-panel img {
      width: 110px;
      height: 110px;
      margin-bottom: 6px;
    }
    .float-qr-panel span {
      font-size: 0.78rem;
      color: var(--text-main);
      font-weight: 600;
    }
    .float-btn:hover .float-qr-panel {
      display: flex;
    }
    @media (max-width: 992px) {
      .hero-content h1 {
        font-size: 2.2rem;
      }
      .service-grid,
      .image-showcase-grid,
      .testimonials-grid,
      .agent-card-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .hero-stat-grid,
      .steps-container {
        grid-template-columns: repeat(2, 1fr);
      }
      .form-section-layout {
        grid-template-columns: 1fr;
      }
      .footer-top {
        grid-template-columns: 1fr 1fr;
      }
    }
    @media (max-width: 768px) {
      .nav-links {
        display: none;
        position: absolute;
        top: 76px;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid #e2e8f0;
        box-shadow: var(--shadow-md);
      }
      .nav-links.active {
        display: flex;
      }
      .menu-toggle {
        display: block;
      }
      .service-grid,
      .image-showcase-grid,
      .testimonials-grid,
      .hero-stat-grid,
      .steps-container,
      .agent-card-grid {
        grid-template-columns: 1fr;
      }
      .rating-banner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
      }
      .form-row {
        grid-template-columns: 1fr;
      }
      .footer-top {
        grid-template-columns: 1fr;
      }
    }