


/* Sekcia Naše služby */
.services {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.services h2 {
  font-size: 2rem; /* približne 32px */
  color: #00aaff;
  margin-bottom: 1rem;
  text-decoration: none;
  text-underline-offset: 6px;
  text-align: center;
}

.services p {
  font-size: 1.125rem; /* približne 18px */
  line-height: 1.8;
  color: #004aad;
  text-align: justify;
  margin-bottom: 2rem;
}

.services ul {
  color: #004aad;
  font-size: 1rem; /* približne 16px */
  line-height: 1.8;
  padding-left: 1.25rem; /* odsadenie pre odrážky */
}

/* Tablet */
@media (max-width: 768px) {
  .services {
    padding: 15px;
  }

  .services h2 {
    font-size: 1.75rem; /* cca 28px */
  }

  .services p {
    font-size: 1rem;
    text-align: left; /* ľahšie čítanie na užších obrazovkách */
  }

  .services ul {
    font-size: 0.95rem;
  }
}

/* Mobil */
@media (max-width: 480px) {
  .services {
    padding: 10px;
  }

  .services h2 {
    font-size: 1.5rem; /* cca 24px */
  }

  .services p {
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: left;
  }

  .services ul {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}

