body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
}

header.hero {
  background: url('../img/hero.jpg') no-repeat center center/cover;
  color: white;
  padding: 100px 20px;
  text-align: center;
}

header.hero h1 {
  font-size: 3em;
  margin-bottom: 10px;
}

section {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}

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

.gallery-images img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

ul {
  list-style: disc inside;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input[type="text"],
input[type="email"],
textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
}

button[type="submit"] {
  padding: 12px 20px;
  border: none;
  background-color: #1e90ff;
  color: white;
  font-size: 1em;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #005bb5;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #222;
  color: #ccc;
  font-size: 0.9em;
}
