.sluzby-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
  }

  .sluzba-box {
    width: 240px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
  }

  .sluzba-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background-color: #f9fbff;
    border-color: #cce0ff;
  }

  .sluzba-box img {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    border: 1px solid #ccc;
    background: #f8f8f8;
    margin-bottom: 12px;
    transition: transform 0.3s ease;
  }

  .sluzba-box:hover img {
    transform: scale(1.1);
  }

  .sluzba-box-title {
    font-weight: bold;
    color: #246bfd;
    margin-bottom: 8px;
    font-size: 16px;
  }

  .sluzba-box-desc {
    font-size: 14px;
    color: #444;
  }

  @media (max-width: 768px) {
    .sluzba-box {
      width: 100%;
    }
  }