/* Reset & CSS variables for "Vibrant Trendy Style" (艳色潮流风) with Light Background */
    :root {
      --primary-gradient: linear-gradient(135deg, #7B2CBF 0%, #FF007F 50%, #FF6B00 100%);
      --secondary-gradient: linear-gradient(135deg, #00F5D4 0%, #7B2CBF 100%);
      --neon-purple: #7B2CBF;
      --neon-pink: #FF007F;
      --neon-teal: #00F5D4;
      --dark-text: #1E1E24;
      --medium-text: #5A5A66;
      --light-bg: #FCFAFD;
      --white: #FFFFFF;
      --card-border: 1px solid rgba(123, 44, 191, 0.15);
      --card-shadow: 0 10px 30px rgba(123, 44, 191, 0.06);
      --card-shadow-hover: 0 15px 40px rgba(255, 0, 127, 0.15);
      --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
      --max-width: 1200px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Microsoft YaHei", sans-serif;
    }

    body {
      background-color: var(--light-bg);
      color: var(--dark-text);
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* Common Container */
    .container {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 24px;
      width: 100%;
    }

    /* Headings */
    h1, h2, h3, h4 {
      font-weight: 800;
      color: var(--dark-text);
      line-height: 1.3;
    }

    .section-title {
      text-align: center;
      margin-bottom: 50px;
      font-size: 2.2rem;
      position: relative;
    }

    .section-title span {
      background: var(--primary-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .section-subtitle {
      text-align: center;
      color: var(--medium-text);
      max-width: 700px;
      margin: -40px auto 50px auto;
      font-size: 1.1rem;
    }

    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 30px;
      border-radius: 50px;
      font-weight: bold;
      text-decoration: none;
      transition: var(--transition);
      cursor: pointer;
      border: none;
      font-size: 1rem;
    }

    .btn-primary {
      background: var(--primary-gradient);
      color: var(--white);
      box-shadow: 0 4px 15px rgba(255, 0, 127, 0.3);
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(255, 0, 127, 0.5);
    }

    .btn-secondary {
      background: var(--white);
      color: var(--dark-text);
      border: 2px solid var(--neon-purple);
    }

    .btn-secondary:hover {
      background: var(--neon-purple);
      color: var(--white);
      transform: translateY(-3px);
    }

    /* Header & Navigation */
    header {
      position: sticky;
      top: 0;
      background: rgba(252, 250, 253, 0.9);
      backdrop-filter: blur(10px);
      z-index: 1000;
      border-bottom: 1px solid rgba(123, 44, 191, 0.08);
      padding: 15px 0;
      transition: var(--transition);
    }

    .nav-wrapper {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo-container {
      display: flex;
      align-items: center;
    }

    .ai-page-logo {
      height: 45px;
      width: auto;
    }

    nav {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .nav-menu {
      display: flex;
      list-style: none;
      gap: 20px;
    }

    .nav-menu a {
      color: var(--dark-text);
      text-decoration: none;
      font-weight: 600;
      font-size: 0.95rem;
      transition: var(--transition);
      padding: 5px 10px;
      border-radius: 4px;
    }

    .nav-menu a:hover {
      color: var(--neon-pink);
      background: rgba(255, 0, 127, 0.05);
    }

    /* Mobile Nav Toggle */
    .menu-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
    }

    .menu-toggle span {
      display: block;
      width: 25px;
      height: 3px;
      background-color: var(--dark-text);
      border-radius: 3px;
      transition: var(--transition);
    }

    /* Hero Section (No Images Allowed!) */
    #hero {
      padding: 100px 0 80px 0;
      background: radial-gradient(circle at 80% 20%, rgba(255, 0, 127, 0.05) 0%, rgba(123, 44, 191, 0.05) 50%, transparent 100%);
      position: relative;
    }

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

    .ai-hero-title {
      font-size: 3.5rem;
      margin-bottom: 24px;
      line-height: 1.2;
    }

    .ai-hero-title span {
      background: var(--primary-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero-tagline {
      font-size: 1.3rem;
      color: var(--medium-text);
      margin-bottom: 40px;
      font-weight: 500;
    }

    .hero-btn-group {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-bottom: 60px;
    }

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

    .hero-card {
      background: var(--white);
      padding: 25px 20px;
      border-radius: 16px;
      border: var(--card-border);
      box-shadow: var(--card-shadow);
      transition: var(--transition);
    }

    .hero-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--card-shadow-hover);
    }

    .hero-card h3 {
      font-size: 2rem;
      background: var(--primary-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 8px;
    }

    .hero-card p {
      font-size: 0.9rem;
      color: var(--medium-text);
    }

    /* General Section Styling */
    section {
      padding: 80px 0;
    }

    /* About Us (关于我们) */
    #about {
      background-color: var(--white);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 50px;
      align-items: center;
    }

    .about-details h3 {
      font-size: 1.8rem;
      margin-bottom: 20px;
      color: var(--neon-purple);
    }

    .about-details p {
      color: var(--medium-text);
      margin-bottom: 20px;
    }

    /* Service Cap (全平台AIGC服务 & 一站式制作) */
    #services {
      background-color: var(--light-bg);
    }

    .service-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .service-card {
      background: var(--white);
      padding: 30px;
      border-radius: 20px;
      border: var(--card-border);
      box-shadow: var(--card-shadow);
      transition: var(--transition);
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--card-shadow-hover);
    }

    .service-icon {
      font-size: 2.5rem;
      margin-bottom: 20px;
    }

    .service-card h3 {
      font-size: 1.3rem;
      margin-bottom: 12px;
    }

    .service-card p {
      color: var(--medium-text);
      font-size: 0.95rem;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .service-tag {
      display: inline-block;
      align-self: flex-start;
      font-size: 0.75rem;
      padding: 4px 10px;
      border-radius: 30px;
      background: rgba(123, 44, 191, 0.1);
      color: var(--neon-purple);
      font-weight: 700;
    }

    /* Workflow & Network (全国网络 + 标准化流程 + 技术标准) */
    #workflow {
      background-color: var(--white);
    }

    .timeline {
      position: relative;
      max-width: 800px;
      margin: 0 auto;
      padding: 20px 0;
    }

    .timeline::before {
      content: '';
      position: absolute;
      width: 4px;
      background: var(--primary-gradient);
      top: 0;
      bottom: 0;
      left: 50%;
      margin-left: -2px;
      border-radius: 2px;
    }

    .timeline-item {
      padding: 10px 40px;
      position: relative;
      width: 50%;
      clear: both;
    }

    .timeline-item-left {
      float: left;
      text-align: right;
    }

    .timeline-item-right {
      float: right;
      text-align: left;
    }

    .timeline-item::after {
      content: '';
      position: absolute;
      width: 20px;
      height: 20px;
      background: var(--white);
      border: 4px solid var(--neon-pink);
      border-radius: 50%;
      top: 15px;
      z-index: 1;
      transition: var(--transition);
    }

    .timeline-item-left::after {
      right: -12px;
    }

    .timeline-item-right::after {
      left: -12px;
    }

    .timeline-item:hover::after {
      background: var(--neon-pink);
      transform: scale(1.2);
    }

    .timeline-content {
      padding: 20px;
      background: var(--light-bg);
      border-radius: 12px;
      border: var(--card-border);
      box-shadow: var(--card-shadow);
    }

    /* Solutions Section (全行业解决方案) */
    #solutions {
      background-color: var(--light-bg);
    }

    .solutions-tabs {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-bottom: 40px;
      flex-wrap: wrap;
    }

    .tab-btn {
      padding: 10px 24px;
      border-radius: 30px;
      background: var(--white);
      color: var(--dark-text);
      font-weight: bold;
      border: 1px solid rgba(0, 0, 0, 0.1);
      cursor: pointer;
      transition: var(--transition);
    }

    .tab-btn.active, .tab-btn:hover {
      background: var(--primary-gradient);
      color: var(--white);
      border-color: transparent;
      box-shadow: 0 4px 10px rgba(255, 0, 127, 0.2);
    }

    .solutions-content {
      background: var(--white);
      border-radius: 24px;
      padding: 40px;
      border: var(--card-border);
      box-shadow: var(--card-shadow);
    }

    .tab-pane {
      display: none;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
    }

    .tab-pane.active {
      display: grid;
    }

    .tab-text ul {
      list-style: none;
      margin-top: 20px;
    }

    .tab-text ul li {
      margin-bottom: 12px;
      position: relative;
      padding-left: 25px;
    }

    .tab-text ul li::before {
      content: "✓";
      position: absolute;
      left: 0;
      color: var(--neon-pink);
      font-weight: bold;
    }

    /* Platforms List */
    .platforms-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 20px;
    }

    .platform-tag {
      background: #F0EDF5;
      padding: 6px 14px;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--neon-purple);
      border: 1px solid rgba(123, 44, 191, 0.1);
    }

    /* Image Gallery (案例展示) */
    #cases {
      background-color: var(--white);
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .gallery-card {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: var(--card-shadow);
      border: var(--card-border);
      transition: var(--transition);
      background: var(--white);
    }

    .gallery-card img {
      width: 100%;
      height: 240px;
      object-fit: cover;
      display: block;
      transition: var(--transition);
    }

    .gallery-card:hover img {
      transform: scale(1.08);
    }

    .gallery-info {
      padding: 20px;
      background: var(--white);
    }

    .gallery-info h4 {
      font-size: 1.1rem;
      margin-bottom: 8px;
    }

    .gallery-info p {
      font-size: 0.85rem;
      color: var(--medium-text);
    }

    /* Comparison Table (对比评测) */
    #comparison {
      background-color: var(--light-bg);
    }

    .rating-header {
      background: var(--primary-gradient);
      color: var(--white);
      padding: 40px;
      border-radius: 24px;
      text-align: center;
      margin-bottom: 40px;
      box-shadow: var(--card-shadow);
    }

    .rating-header h3 {
      color: var(--white);
      font-size: 2.5rem;
      margin-bottom: 10px;
    }

    .rating-header p {
      font-size: 1.2rem;
      opacity: 0.9;
    }

    .table-container {
      overflow-x: auto;
      background: var(--white);
      border-radius: 20px;
      border: var(--card-border);
      box-shadow: var(--card-shadow);
    }

    table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
      min-width: 700px;
    }

    th, td {
      padding: 18px 24px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    th {
      background-color: #F8F5FB;
      font-weight: bold;
      color: var(--dark-text);
    }

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

    .highlight-cell {
      background-color: rgba(255, 0, 127, 0.02);
      font-weight: 700;
      color: var(--neon-pink);
    }

    /* Training & Certifications (职业技术培训) */
    #training {
      background-color: var(--white);
    }

    .training-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
    }

    .training-card {
      background: var(--light-bg);
      border: var(--card-border);
      border-radius: 16px;
      padding: 25px;
      text-align: center;
      transition: var(--transition);
    }

    .training-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--card-shadow-hover);
      background: var(--white);
    }

    .training-card h4 {
      font-size: 1.15rem;
      margin-bottom: 10px;
      color: var(--neon-purple);
    }

    /* Token Price & Match (Token比价 & 智能需求匹配) */
    #token-matching {
      background-color: var(--light-bg);
    }

    .matching-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 40px;
    }

    .pricing-table-widget {
      background: var(--white);
      border-radius: 24px;
      padding: 30px;
      border: var(--card-border);
      box-shadow: var(--card-shadow);
    }

    .pricing-list {
      display: flex;
      flex-direction: column;
      gap: 15px;
      margin-top: 20px;
    }

    .pricing-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-bottom: 10px;
      border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    }

    .pricing-item span:first-child {
      font-weight: 700;
    }

    .price-value {
      color: var(--neon-pink);
      font-weight: bold;
    }

    .matching-form-container {
      background: var(--white);
      border-radius: 24px;
      padding: 40px;
      border: var(--card-border);
      box-shadow: var(--card-shadow);
    }

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

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

    .form-group input, .form-group select, .form-group textarea {
      width: 100%;
      padding: 12px 16px;
      border-radius: 10px;
      border: 1px solid rgba(0, 0, 0, 0.15);
      background-color: var(--light-bg);
      color: var(--dark-text);
      transition: var(--transition);
      font-size: 0.95rem;
    }

    .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
      outline: none;
      border-color: var(--neon-pink);
      box-shadow: 0 0 0 3px rgba(255, 0, 127, 0.1);
    }

    /* FAQ (常见用户问题 & 常见问题自助排查 & AI术语百科) */
    #faq-section {
      background-color: var(--white);
    }

    .faq-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr;
      gap: 40px;
    }

    .faq-accordion {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .faq-item {
      border: var(--card-border);
      border-radius: 12px;
      overflow: hidden;
      background: var(--light-bg);
      transition: var(--transition);
    }

    .faq-header {
      padding: 20px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 700;
      background: var(--white);
    }

    .faq-header::after {
      content: '+';
      font-size: 1.5rem;
      color: var(--neon-pink);
      transition: var(--transition);
    }

    .faq-item.active .faq-header::after {
      content: '−';
      transform: rotate(180deg);
    }

    .faq-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease-out;
      padding: 0 20px;
      color: var(--medium-text);
      font-size: 0.95rem;
    }

    .faq-item.active .faq-content {
      max-height: 200px;
      padding: 15px 20px 20px 20px;
    }

    .troubleshoot-glossary {
      display: flex;
      flex-direction: column;
      gap: 30px;
    }

    .troubleshoot-card, .glossary-card {
      background: var(--light-bg);
      border-radius: 20px;
      padding: 30px;
      border: var(--card-border);
    }

    .troubleshoot-card h4, .glossary-card h4 {
      font-size: 1.2rem;
      margin-bottom: 15px;
      color: var(--neon-purple);
    }

    .glossary-terms {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 15px;
    }

    .glossary-term strong {
      display: block;
      color: var(--dark-text);
      margin-bottom: 3px;
    }

    .glossary-term span {
      font-size: 0.8rem;
      color: var(--medium-text);
    }

    /* Testimonials (用户评论) */
    #testimonials {
      background-color: var(--light-bg);
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 25px;
    }

    .testimonial-card {
      background: var(--white);
      border: var(--card-border);
      border-radius: 20px;
      padding: 30px;
      box-shadow: var(--card-shadow);
      position: relative;
    }

    .testimonial-rating {
      color: #FFB300;
      font-size: 1.2rem;
      margin-bottom: 15px;
    }

    .testimonial-text {
      color: var(--medium-text);
      font-size: 0.95rem;
      margin-bottom: 20px;
      font-style: italic;
    }

    .testimonial-user {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .user-avatar {
      width: 45px;
      height: 45px;
      border-radius: 50%;
      background: var(--primary-gradient);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-weight: 700;
      font-size: 1.1rem;
    }

    .user-info h5 {
      font-size: 0.95rem;
      font-weight: 700;
    }

    .user-info p {
      font-size: 0.8rem;
      color: var(--medium-text);
    }

    /* Articles Section (行业资讯 / 知识库) */
    #articles {
      background-color: var(--white);
    }

    .articles-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
    }

    .article-card {
      background: var(--light-bg);
      border-radius: 16px;
      padding: 25px;
      border: var(--card-border);
      transition: var(--transition);
    }

    .article-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--card-shadow-hover);
      background: var(--white);
    }

    .article-card .tag {
      font-size: 0.75rem;
      background: rgba(255, 0, 127, 0.1);
      color: var(--neon-pink);
      padding: 3px 8px;
      border-radius: 10px;
      font-weight: 700;
    }

    .article-card h4 {
      margin: 12px 0 10px 0;
      font-size: 1.15rem;
    }

    .article-card a {
      color: var(--neon-purple);
      text-decoration: none;
      font-weight: bold;
      font-size: 0.9rem;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      margin-top: 15px;
    }

    .article-card a:hover {
      color: var(--neon-pink);
    }

    /* Footer & Partners */
    footer {
      background-color: #121016;
      color: #E2E1E5;
      padding: 80px 0 30px 0;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 60px;
    }

    .footer-brand .ai-page-logo {
      
      margin-bottom: 20px;
    }

    .footer-brand p {
      font-size: 0.9rem;
      color: #A09EAB;
      margin-bottom: 15px;
    }

    .footer-col h5 {
      color: var(--white);
      font-size: 1.1rem;
      margin-bottom: 20px;
      position: relative;
    }

    .footer-col h5::after {
      content: '';
      position: absolute;
      bottom: -6px;
      left: 0;
      width: 30px;
      height: 2px;
      background: var(--primary-gradient);
    }

    .footer-col ul {
      list-style: none;
    }

    .footer-col ul li {
      margin-bottom: 10px;
    }

    .footer-col ul li a {
      color: #A09EAB;
      text-decoration: none;
      font-size: 0.9rem;
      transition: var(--transition);
    }

    .footer-col ul li a:hover {
      color: var(--white);
      padding-left: 5px;
    }

    .qr-container {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .qr-container img {
      width: 100px;
      height: 100px;
      border-radius: 8px;
      background: var(--white);
      padding: 5px;
    }

    .qr-text {
      font-size: 0.85rem;
      color: #A09EAB;
    }

    .friend-links {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding: 30px 0;
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      align-items: center;
    }

    .friend-links span {
      font-weight: 700;
      color: var(--white);
      font-size: 0.9rem;
    }

    .friend-links a {
      color: #A09EAB;
      text-decoration: none;
      font-size: 0.85rem;
      transition: var(--transition);
    }

    .friend-links a:hover {
      color: var(--neon-pink);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding-top: 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 15px;
    }

    .footer-bottom p {
      font-size: 0.85rem;
      color: #A09EAB;
    }

    /* Fixed Widget Elements */
    .fixed-widget {
      position: fixed;
      right: 25px;
      bottom: 25px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      z-index: 999;
    }

    .widget-btn {
      width: 55px;
      height: 55px;
      border-radius: 50%;
      background: var(--white);
      box-shadow: 0 4px 20px rgba(123, 44, 191, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: var(--transition);
      border: 1px solid rgba(123, 44, 191, 0.15);
      position: relative;
    }

    .widget-btn:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 25px rgba(255, 0, 127, 0.3);
    }

    .widget-btn svg {
      width: 25px;
      height: 25px;
      fill: var(--neon-purple);
    }

    .widget-btn:hover svg {
      fill: var(--neon-pink);
    }

    .widget-popover {
      position: absolute;
      bottom: 65px;
      right: 0;
      background: var(--white);
      border: var(--card-border);
      border-radius: 12px;
      padding: 15px;
      box-shadow: var(--card-shadow-hover);
      display: none;
      width: 180px;
      text-align: center;
    }

    .widget-btn:hover .widget-popover {
      display: block;
    }

    .widget-popover img {
      width: 130px;
      height: 130px;
      margin-bottom: 8px;
    }

    .widget-popover span {
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--dark-text);
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .hero-highlights {
        grid-template-columns: repeat(2, 1fr);
      }
      .about-grid {
        grid-template-columns: 1fr;
      }
      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
      .ai-hero-title {
        font-size: 2.3rem;
      }
      .menu-toggle {
        display: flex;
      }
      .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        display: none;
        border-top: 1px solid rgba(0,0,0,0.05);
      }
      .nav-menu.active {
        display: flex;
      }
      .timeline::before {
        left: 30px;
      }
      .timeline-item {
        width: 100%;
        padding-left: 60px;
        padding-right: 0;
      }
      .timeline-item-left {
        text-align: left;
        float: none;
      }
      .timeline-item-right {
        text-align: left;
        float: none;
      }
      .timeline-item-left::after, .timeline-item-right::after {
        left: 20px;
        right: auto;
      }
      .tab-pane {
        grid-template-columns: 1fr;
      }
      .matching-grid {
        grid-template-columns: 1fr;
      }
      .footer-grid {
        grid-template-columns: 1fr;
      }
      .faq-grid {
        grid-template-columns: 1fr;
      }
    }