.services {
    min-height: 75vh;
    padding: 120px 0 60px 0;
    background-image: url("/public/img/pages/katalog-ofert/pic1.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    margin-top: 50px;
}
  
  .service-item {
    border: 2px solid rgba(255, 255, 255, 0.8);
    background-color: rgba(0, 0, 0, 0.6);
    text-align: center;
    text-transform: uppercase;
    color: #f2f1f2;
    display: block;
    font-size: 1.6em;
    font-weight: 600;
    padding: 60px 0 30px 0;
    box-sizing: border-box;
    display: flex;
    align-items: stretch;
    justify-content: center;
  }
  
  .service-item:hover {
    text-decoration: none;
    color: #e95c20;
  }

  @media (max-width: 1400px) {
    .services {
        background-position: bottom center;
    }
  }

  h2 {
    font-weight: 700;
    letter-spacing: 0;
    font-size: clamp(1em, 4vw, 4em);
    color: #e4e4e4;
    }

    .line-right-navy {
        position: relative;
      }
      
      .line-right-navy::before {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        height: 5px;
        width: 50%;
        background-color: #152332;
        border-top-left-radius: 10px; /* Zaokrąglenie górnego lewego rogu */
        border-bottom-left-radius: 10px; /* Zaokrąglenie dolnego lewego rogu */
      }
