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

header {
  background: #1c1c1c;
  color: #d4af37;
  text-align: center;
  padding: 40px 20px;
}

nav {
  text-align: center;
  background: #333;
  padding: 10px;
}

nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
}

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

ul {
  line-height: 2;
}

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

.project {
  flex: 1 1 300px;
}

.project img {
  width: 100%;
  border-radius: 5px;
}

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

input, textarea {
  padding: 10px;
  font-size: 16px;
}

button {
  background: #d4af37;
  border: none;
  padding: 12px;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background: #b8962e;
}

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