body {
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(135deg, #dbeafe, #f0f9ff);
  margin: 0;
  padding: 20px;
}

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

h1 {
  text-align: center;
  text-transform: capitalize;
  color: #1e3a8a;
  margin-bottom: 20px;
}

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

img {
  width: 300px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

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

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

th {
  background: #3b82f6;
  color: white;
  width: 40%;
}

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

section {
  margin-top: 25px;
  padding: 15px;
  background: #f1f5f9;
  border-radius: 12px;
}

h2 {
  margin-top: 0;
  color: #1e40af;
}

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