
body {
  margin: 0;
  padding: 0;
  background: #ffffff;
  color: #222;
  font-family: 'Montserrat', sans-serif;
}
header {
  background: #f5f5f5;
  padding: 1em 2em;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-weight: 700;
  font-size: 1.5em;
}
.logo span {
  font-weight: 400;
  color: #666;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 1em;
}
nav ul li a {
  color: #000;
  text-decoration: none;
}
section {
  padding: 3em 2em;
  max-width: 1000px;
  margin: auto;
}
.hero-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
form {
  display: flex;
  flex-direction: column;
  gap: 1em;
  max-width: 500px;
}
input, select, button {
  padding: 0.75em;
  font-size: 1em;
  border: 1px solid #ccc;
}
button {
  background: #000;
  color: #fff;
  border: none;
  font-weight: 600;
  cursor: pointer;
}
footer {
  text-align: center;
  padding: 2em;
  background: #f5f5f5;
}
.coming-soon {
  font-size: 2em;
  font-weight: 700;
  color: #000;
  margin-top: 20px;
  text-align: center;
  padding: 20px;
  background-color: #f5f5f5;
}
.grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.grid div {
  flex: 1;
  min-width: 30%;
}
.grid img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}
