body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #f9f9fb;
  color: #222;
  line-height: 1.6;
}

header {
  background: #fff;
  padding: 2em;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

header .portrait {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1em;
  box-shadow: 0 0 8px rgba(0,0,0,0.2);
}

main {
  max-width: 850px;
  margin: 2em auto;
  padding: 0 1.5em;
}

h1, h2 {
  color: #333;
}

section {
  margin-bottom: 2.5em;
}

ul {
  padding-left: 1.5em;
}

.download-button {
  display: inline-block;
  background: #ffc107;
  color: #000;
  padding: 1em 2em;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: background 0.2s ease-in-out;
}

.download-button:hover {
  background: #e0a800;
}

footer {
  background: #eee;
  text-align: center;
  padding: 1.5em 0;
  font-size: 0.9em;
  margin-top: 4em;
  color: #555;
}

.quote {
    font-style: italic;
    color: #555;
    margin: 1.5em 0;
    padding-left: 1em;
    border-left: 4px solid #ffc107;
  }
  .quote span {
    display: block;
    margin-top: 0.5em;
    font-weight: bold;
    font-style: normal;
  }

  .duck-gallery {
    margin-top: 4em;
    text-align: center;
  }
  .duck-gallery .duck-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5em;
    margin-top: 2em;
  }
  .duck-gallery img {
    width: 100%;
    max-width: 100px;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    margin-bottom: 0.5em;
  }
  .duck-gallery p {
    margin: 0;
    font-weight: 500;
    font-size: 0.9em;
  }
  .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1em;
  }