css
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background-color: #f4f4f4;
}

nav ul {
  background: #004d40;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

nav ul li {
  float: left;
}

nav ul li a {
  display: block;
  color: white;
  padding: 14px 16px;
  text-decoration: none;
}

nav ul li a:hover {
  background-color: #00332c;
}

.hero {
  display: flex;
  flex-wrap: wrap;
 justify-content: space-between;
  background-image: url('images/drop.jpg'); /* Optional dark bg */
  background-size: cover;
  background-position: center;
  color: white;
  padding: 50px 10%;
  align-items: center;
}

.hero-text {
  flex: 1;
  min-width: 300px;
}

.hero-text h1 {
  font-size: 3em;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.content-box {
  background-color: rgba(255, 228, 196, 0.95);
  padding: 20px;
  color: #222;
margin-bottom: 30px;
  border-radius: 8px;
  width: 90%;
  max-width: 400px;
}

.content-box h2 {
  margin-bottom: 10px;
}

.content-box ul {
  list-style-type: disc;
  margin-left: 20px;
}

.menu-btn {
  display: inline-block;
  background-color: #2b6cb0;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

.hero-image img {
  width: 300px;
  height: auto;
  border: 5px solid white;
  border-radius: 5px;
  margin-top: 20px;
}

footer {
  background-color: #0b2c18;
  color: white;
  text-align: center;
 padding: 15px 0;
}
