  <style>
    body {
      margin: 0;
      font-family: 'Georgia', serif;
      background-color: mediumvioletred;
      color: #333;
    }

    .services-section {
      padding: 60px 40px;
      text-align: center;
    }

    .services-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 40px;
      margin-top: 40px;
      background-color: mediumvioletred;
    }

    .service-card {
      width: 300px;
      max-width: 100%;
    }

    .service-card img {
      width: 100%;
      height: auto;
      border-radius: 8px;
    }

    .service-card h3 {
      font-size: 22px;
      margin: 15px 0 10px;
    }

    .service-card p {
      font-size: 15px;
      line-height: 1.6;
      color: black;
    }

    @media (max-width: 1024px) {
      .services-grid {
        gap: 30px;
      }
    }

    @media (max-width: 768px) {
      .services-grid {
        flex-direction: column;
        align-items: center;
      }

      .service-card {
        width: 90%;
      }
    }
  </style>