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

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

h1 {
  text-align: center;
  color: #2c3e50;
}

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

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

table {
  width: 100%;
  border-collapse: collapse;
}

th {
  text-align: left;
  background-color: #2c3e50;
  color: white;
  padding: 10px;
  width: 40%;
}

td {
  padding: 10px;
  background-color: #ecf0f1;
}

tr:not(:last-child) td,
tr:not(:last-child) th {
  border-bottom: 2px solid white;
}

section {
  margin-top: 25px;
}

h2 {
  color: #34495e;
  border-bottom: 2px solid #ddd;
  padding-bottom: 5px;
}

p {
  line-height: 1.6;
  color: #555;
}