body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
  background: #fdf6f0;
  color: #333;
}

h1 {
  text-align: center;
  color: #d65c5c;
}

p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 20px auto;
}

/* Tabs */
.tabs {
  display: flex;
  justify-content: center;
  border-bottom: 2px solid #d65c5c;
  margin-bottom: 20px;
}

.tab-button {
  padding: 10px 20px;
  cursor: pointer;
  border: none;
  background: #fff;
  outline: none;
  font-weight: bold;
  margin-right: 5px;
  border-radius: 5px 5px 0 0;
  transition: 0.3s;
}

.tab-button:hover {
  background: #ffeaea;
}

.tab-button.active {
  background: #d65c5c;
  color: #fff;
}

/* Tab content */
.tab-content {
  display: none;
  background: #fff;
  padding: 20px;
  border-radius: 0 5px 5px 5px;
  max-width: 900px;
  margin: 0 auto 40px auto;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.tab-content.active {
  display: block;
}

form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

input, textarea {
  margin-bottom: 15px;
  padding: 10px;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

button {
  padding: 10px;
  background-color: #d65c5c;
  color: #fff;
  border: none;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
}

button:hover {
  background-color: #b04949;
}

.gallery img {
  width: 100%;
  max-width: 300px;
  border-radius: 10px;
  margin: 10px;
}

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

ul {
  padding-left: 20px;
}
