body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f4f7f6;
  margin: 0;
  padding: 20px;
  color: #333;
}

.wrap {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

h1 {
  text-align: center;
  margin-bottom: 20px;
  color: #2c3e50;
}

h2 {
  margin-top: 30px;
  color: #34495e;
}

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

.row img {
  width: 300px;
  max-width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fafafa;
  border-radius: 8px;
  overflow: hidden;
}

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

th {
  background: #2c3e50;
  color: white;
  width: 40%;
}

td {
  background: #ecf0f1;
}

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

section p {
  line-height: 1.6;
}

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

  h1 {
    font-size: 24px;
  }
}