/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #fff;
  color: #1d1d1f;
  line-height: 1.6;
  padding: 20px;
}

h1, h2 {
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 20px;
}

h2 {
  margin-top: 32px;
}

p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #6e6e73;
}

a {
  color: #0071e3;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #005bb5;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

figure {
  margin: 20px 0;
}

figure img {
  max-width: 400px;
}

figcaption {
  font-size: 14px;
  color: #6e6e73;
  font-style: italic;
  margin-top: 8px;
}

.image-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin: 20px 0;
}

.image-row figure {
  flex: 1;
  min-width: 200px;
  max-width: 300px;
  margin: 0;
}

.container {
  max-width: 800px;
  margin: 0 auto;
}

ul {
  padding-left: 20px;
}

ul li {
  margin-bottom: 10px;
}

ul li a {
  font-size: 18px;
  font-weight: 500;
}

@media (max-width: 768px) {
  h1 {
    font-size: 28px;
  }

  p {
    font-size: 16px;
  }

  .image-row {
    flex-direction: column;
  }

  .image-row figure {
    max-width: 100%;
  }
}