  .about-section {
      padding: 80px 0;
      background-color: white;
  }

  .about-content {
      display: flex;
      gap: 50px;
      align-items: center;
  }

  .about-text h2 {
      font-size: 32px;
      margin-bottom: 20px;
      color: #1e293b;
  }

  .about-text p {
      margin-bottom: 15px;
      color: #475569;
  }

  .stats {
      display: flex;
      gap: 30px;
      margin-top: 30px;
  }

  .stat-item {
      text-align: center;
  }

  .stat-number {
      font-size: 32px;
      font-weight: 700;
      color: #2563eb;
  }

  .stat-label {
      color: #64748b;
      font-size: 14px;
  }

  .about-image {
      flex: 1;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  }

  .about-image img {
      width: 100%;
      height: auto;
      display: block;
  }
