<style>
  /* Základní nastavení a barvy */
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f8ff; /* Světle modré pozadí */
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
  }

  /* Kontejner pro obsah */
  .wrap {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  /* Nadpisy */
  h1 {
    color: #005f73;
    text-align: center;
    border-bottom: 3px solid #94d2bd;
    padding-bottom: 10px;
    margin-top: 0;
  }

  h2 {
    color: #0a9396;
    border-left: 5px solid #94d2bd;
    padding-left: 15px;
  }

  /* Flexbox rozložení pro obrázek a tabulku */
  .row {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    align-items: center;
    margin-bottom: 30px;
  }

  .row img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    flex: 1;
    min-width: 300px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  /* Styl tabulky */
  table {
    width: 100%;
    border-collapse: collapse;
    background: #f9fdfd;
  }

  th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
  }

  th {
    color: #005f73;
    font-weight: 600;
    width: 35%;
  }

  tr:hover {
    background-color: #f1fafa;
  }

  /* Text sekce */
  section {
    background-color: #f1fafa;
    padding: 20px;
    border-radius: 10px;
  }

  p {
    text-align: justify;
    margin-bottom: 0;
  }

  /* Responzivita pro malé obrazovky */
  @media (max-width: 600px) {
    .row {
      flex-direction: column;
    }
    
    .row img, .row div {
      width: 100%;
    }
    
    th {
      width: 40%;
    }
  }
</style>