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

body {
  font-family: "Segoe UI", Tahoma, sans-serif;
  background: linear-gradient(135deg, #e6f0ff, #fdfdfd);
  padding: 30px;
  color: #2c3e50;
}

.wrap {
  max-width: 850px;
  margin: auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 25px 30px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

h1 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 28px;
}

.row {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.row img {
  width: 260px;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.row img:hover {
  transform: scale(1.05);
}

table {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

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

th {
  background-color: #f1f5f9;
  font-weight: 600;
  width: 45%;
}

td {
  background-color: #fafafa;
}

tr:nth-child(even) td {
  background-color: #f0f4f8;
}

section {
  margin-top: 30px;
}

h2 {
  margin-bottom: 10px;
  font-size: 22px;
}

p {
  line-height: 1.7;
}

/* Responzivní design */
@media (max-width: 600px) {
  .row {
    flex-direction: column;
    align-items: center;
  }

  .row img {
    width: 100%;
    max-width: 320px;
  }

  th, td {
    font-size: 14px;
  }
}