* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Verdana, sans-serif;
  background-color: #fffaf5;
  color: #333;
}

header {
  background-color: #f8d1c5;
  padding: 20px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 2px solid #e5b2a1;
}

header h1 {
  margin: 0;
  font-size: 2em;
}

header p {
  margin: 5px 0 0;
  font-size: 1em;
}

main {
  padding: 20px;
}

section {
  margin-bottom: 40px;
}

h2 {
  font-size: 1.5em;
  border-left: 5px solid #f4a896;
  padding-left: 10px;
  margin-bottom: 15px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.gallery a {
  text-align: center;
  text-decoration: none;
  color: inherit;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 10px;
  background: white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  flex: 1 1 150px;
  max-width: 150px;
  transition: transform 0.2s;
}

.gallery a:hover {
  transform: scale(1.05);
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.gallery span {
  display: block;
  margin-top: 8px;
  font-weight: bold;
  color: #d26e52;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #f8d1c5;
  border-top: 2px solid #e5b2a1;
}

.contact-button {
  display: inline-block;
  background-color: #25d366;
  color: white;
  padding: 12px 20px;
  margin-top: 10px;
  text-decoration: none;
  border-radius: 25px;
  font-size: 1em;
  transition: background-color 0.2s;
}

.contact-button:hover {
  background-color: #1da851;
}
