/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Tělo stránky */
body {
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #74b9ff, #dfe6e9);
  padding: 40px;
  color: #2d3436;
}

/* Hlavní karta */
.wrap {
  max-width: 900px;
  margin: auto;
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Nadpis */
h1 {
  margin-bottom: 20px;
  color: #0984e3;
}

/* Řádek s obrázkem a tabulkou */
.row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

/* Obrázek */
img {
  width: 300px;
  border-radius: 10px;
  object-fit: cover;
}

/* Tabulka */
table {
  width: 100%;
  border-collapse: collapse;
  background: #f9fbfc;
  border-radius: 8px;
  overflow: hidden;
}

th, td {
  padding: 10px;
  text-align: left;
}

th {
  background: #0984e3;
  color: white;
  width: 40%;
}

tr:nth-child(even) {
  background: #ecf0f1;
}

/* Sekce */
section {
  margin-top: 25px;
}

h2 {
  margin-bottom: 10px;
  color: #2d3436;
}

p {
  line-height: 1.6;
}

/* Responzivita */
@media (max-width: 700px) {
  .row {
    flex-direction: column;
  }

  img {
    width: 100%;
  }
}