/* Reset základních stylů pro konzistenci napříč prohlížeči */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Globální styl pro tělo stránky */
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
    margin: 20px 20px 0; /* odstraněn spodní odstup */
    position: relative; /* Abychom mohli umístit obrázek relativně k tělu stránky */
  }
  
  /* Styl pro nadpis h1 */
  h1 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
  }
  
  /* Styl pro odstavec */
  p {
    text-align: center;
    font-size: 1.2em;
    margin-bottom: 20px;
  }
  
.services .service-card {
  background: #fff;
  border: 1px solid #e9e9e9;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
  overflow: hidden;
  transition: transform 0.18s ease;
}

.service-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.service-caption {
  padding: 18px 10px;
  color: #6b6b6b;
  font-size: 18px;
  border-top: 1px solid #f1f1f1;
}

.service-link {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.service-link:focus-visible {
  outline: 3px solid rgba(0, 123, 255, 0.18);
  outline-offset: 3px;
}

.service-link:hover .service-card,
.service-link:focus .service-card,
.service-link:focus-visible .service-card {
  transform: translateY(-4px);
}
  