.uslugi-section {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 150px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .uslugi-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .uslugi-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: bold;
    color: #000;
    margin-bottom: 15px;
  }
  
  .uslugi-description {
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px;
    max-width: 600px;
    margin: 0 auto 30px;
  }
  
  .uslugi-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin: 0 auto;
    margin-top: 100px;
  }
  
  /* Karty usług jako boxy */
  .uslugi-category {
    flex: 1 1 400px;
    min-height: 630px;
    text-align: left;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.95));
    color: #fff;
    border-radius: 40px;
    padding: 20px;
    padding-top: 0px;
  }

  .standard {
    position: relative;
    text-align: center;
    top: -40px;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 900;
    color: #464646;

  }
  

 .zaawans{
    position: relative;
    text-align: center;
    top: -40px;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.3);
    background: #222 -webkit-gradient(
        linear,
        left top,
        right top,
        from(#222),
        to(#222),
        color-stop(0.5, #fff)
      ) 0 0 no-repeat;
    background-image: -webkit-linear-gradient(
      -40deg,
      transparent 0%,
      transparent 40%,
      #fff 50%,
      transparent 60%,
      transparent 100%
    );
    -webkit-background-clip: text;
    -webkit-background-size: 100px;
    -webkit-animation: zezzz 5s infinite;
    margin-bottom: 15px;
    font-weight: 900;
  }
  
  @-webkit-keyframes zezzz {
    0%, 10% {
      background-position: 0px;
    }
    20% {
      background-position: top left;
    }
    100% {
      background-position: 400px;
    }
  }
  
  .uslugi-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .uslugi-category li {
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: #fff;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
  }
  
  .uslugi-category li i.gradient-arrow {
    background: linear-gradient(to bottom, #516b34, #b6ca62);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.2rem;
    margin-right: 10px;
    margin-top: 3px;
}

  @media (max-width: 1024px) {
    .uslugi-categories{
      gap: 60px;
    }

  }
  @media (max-width: 768px) {

    .uslugi-category h3 {
        top: -30px;
        
    }

    .uslugi-categories {
        min-height: fit-content;
    }

  }
  
  @media (max-width: 320px) {

    .uslugi-category h3 {
        top: -30px;
    }


  }
  