body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  max-width: 900px;
  margin: 30px auto;
  padding: 0 15px;
  line-height: 1.6;
  background-color: #fafafa;
  color: #000000;
}

h1 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: #000000;
}

h2 {
  margin-top: 2rem;
  font-size: 1.8rem;
  color: #000000;
  border-bottom: 2px solid #000000;
  padding-bottom: 0.3rem;
}

h3 {
  margin-top: 1.5rem;
  font-size: 1.3rem;
  color: #000000;
}

p {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}

ul {
  list-style: none;
  padding-left: 0;
}

li {
  background: white;
  margin-bottom: 2rem;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

li img {
  width: 150px;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

li > div {
  flex: 1;
}

#source {
  text-align: center;
  font-size: 0.9rem;
  color: #7f8c8d;
  margin-top: 3rem;
}

#source a {
  color: #2980b9;
  text-decoration: none;
  transition: color 0.3s ease;
}

#source a:hover {
  text-decoration: underline;
  color: #000000;
}