
   /* body {
      font-family: Arial, sans-serif;
      background: #f9fafb;
      color: #333;
      margin: 0;
      padding: 20px;
    }*/

  h2 {
      font-size: 28px;
      font-weight: bold;
      text-align: center;
      margin-bottom: 30px;
      color: #1f2937;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      max-width: 1000px;
      margin: 0 auto;
    } 

    .card {
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
      padding: 20px;
      transition: transform 0.2s ease;
    }

    .card:hover {
      transform: translateY(-3px);
    }


    .card-header {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
    }

    .icon {
      width: 40px;
      height: 40px;
      background: #e0f2fe;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 12px;
    }

    .icon svg {
      width: 20px;
      height: 20px;
      stroke: #2563eb;
    }

    .card h3 {
      font-size: 20px;
      margin: 0;
      color: #111827;
    }

    .card ul {
      margin: 0;
      padding-left: 18px;
      font-size: 14px;
      color: #4b5563;
    }

    .cta {
      text-align: center;
      margin-top: 30px;
    }

    .cta a {
      display: inline-block;
      padding: 12px 24px;
      background: #2563eb;
      color: white;
      text-decoration: none;
      border-radius: 30px;
      font-weight: bold;
      transition: background 0.3s;
    }

    .cta a:hover {
      background: #1d4ed8;
    }

.services-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}
