body {
  margin: 0;
  font-family: 'Arial', sans-serif;
}

/* First Row: Photo + Name */
.top-row {
  width: 100%;
  background-color: yellow;
}

.photo-cell {
  width: 50%;
  text-align: center;
  padding: 10px;
}

.library-photo {
  width: 90%;
  max-height: 300px;
  border-radius: 10px;
}

.name-cell {
  width: 50%;
  text-align: center;
  vertical-align: middle;
}

.name-cell h1 {
  color: red;
  font-size: 2.5rem;
  line-height: 1.4;
}

/* Second Row: About, Services, Contact, Remarks */
.bottom-row {
  width: 100%;
  background-color: pink;
  text-align: center;
  padding: 20px;
  table-layout: fixed;
}

.bottom-row td {
  padding: 20px;
  vertical-align: top;
  border-right: 1px solid #fff;
}

.bottom-row td:last-child {
  border-right: none;
}

.bottom-row h2 {
  color: #333;
  margin-bottom: 10px;
}

.bottom-row p, .bottom-row ul {
  color: #444;
  font-size: 1rem;
}

.bottom-row ul {
  list-style-type: disc;
  padding-left: 20px;
  text-align: left;
}
