  /* Global Styles */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background-color: rgb(0, 0, 33);
      color: white;
      font-family: "Poppins", sans-serif;
    }

    .container {
      max-width: 1200px;
      margin: auto;
      padding: 20px;
      text-align: center;
    }

    h1 {
      font-size: 2.5rem;
      margin-bottom: 40px;
      color: rgb(170, 107, 228);
    }

    .services {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-around;
    }

    .card {
      background-color: rgb(18, 18, 62);
      border-radius: 10px;
      padding: 20px;
      margin: 20px;
      width: 300px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
      transition: transform 0.3s;
    }

    .card:hover {
      transform: translateY(-5px);
    }

    .card i {
      font-size: 3rem;
      color: rgb(184, 3, 184);
      margin-bottom: 15px;
    }

    .card h3 {
      font-size: 1.5rem;
      margin: 15px 0;
      color: rgb(170, 107, 228);
    }

    .card p {
      font-size: 1rem;
      margin-bottom: 20px;
      color: #bbb;
    }

    .button {
      display: inline-block;
      padding: 10px 20px;
      background: rgb(184, 3, 184);
      color: white;
      text-decoration: none;
      border-radius: 5px;
      transition: background 0.3s ease;
    }

    .buttoncenter {
      display: inline-block;
      padding: 10px 20px;
      background: rgb(184, 3, 184);
      color: white;
      text-decoration: none;
      border-radius: 5px;
      transition: background 0.3s ease;
    }
    

    .button:hover {
      background: rgb(153, 3, 153);
    }

    .footer {
      margin-top: 40px;
      padding: 20px 0;
      color: #bbb;
      font-size: 0.9rem;
    }

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

      .card {
        width: 90%; /* Full width on small screens */
      }
    }