body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background-color: #fff0f5;
  color: #333;
}

h1, h2 {
  font-family: 'Playfair Display', serif;
  color: #b76e79;
}

a {
  color: #b76e79;
  text-decoration: none;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 0;
}

header {
  background-color: #fff;
  border-bottom: 1px solid #f0dce5;
  text-align: center;
  padding: 20px 0;
}

header h1 {
  margin: 0;
  font-size: 32px;
}

header p {
  margin: 5px 0 15px;
  font-style: italic;
  color: #777;
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

nav li {
  display: inline;
}

nav a:hover {
  text-decoration: underline;
}

.section {
  background-color: #fff;
  padding: 60px 0;
}

.section.light {
  background-color: #fce4ec;
}

.hero {
  background-color: #f8bbd0;
  text-align: center;
  padding: 100px 0;
  color: white;
}

.hero h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.gallery img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

blockquote {
  font-style: italic;
  margin: 20px 0;
  padding-left: 20px;
  border-left: 4px solid #b76e79;
}

footer {
  background-color: #f8bbd0;
  color: white;
  text-align: center;
  padding: 20px 0;
}

@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: center;
  }

  .gallery img {
    width: 90%;
    height: auto;
  }
}.logo {
  text-align: center;
  margin: 30px auto;
}

.logo img {
  max-width: 200px;
  height: auto;
}