 .services-section {
      padding: 10px 20px;
      text-align: center;
    }

    .services-section h2 {
      font-size: 2.5em;
      margin-bottom: 20px;
    }

    .services-section p {
      font-size: 1.1em;
      color: #a99c9c9c;
      margin-bottom: 40px;
    }

    .services-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .service-card {
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      width: 260px;
      padding: 20px;
      text-align: center;
      transition: transform 0.3s;
    }

    .service-card:hover {
      transform: translateY(-10px);
    }

    .service-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 20px;
    }

    .service-card h3 {
      font-size: 1.8em;
      margin-bottom: 15px;
    }

    .service-card p {
      font-size: 1em;
      color: #777;
      margin-bottom: 15px;
    }

    .service-card .btn {
      background-color: #28a745;
      color: white;
      padding: 10px 20px;
      border: none;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s;
    }

    .service-card .btn:hover {
      background-color: #218838;
    }

    footer {
      background-color: #333;
      color: #fff;
      text-align: center;
      /*padding: 20px 0;*/
      margin-top: 50px;
    }

    footer p {
      margin: 0;
    }

    @media screen and (max-width: 768px) {
      .services-container {
        flex-direction: column;
        align-items: center;
      }
    }