body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background: #fff;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

header {
  background: #FFCB05;
  color: white;
  padding: 15px 0;
}

header .logo {
  height: 40px;
  vertical-align: middle;
}
.hero-bg {
  background-image: url('assets/hero-bg.png'); /* replace with your file name */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.hero-content {
  background-color: rgba(0, 0, 0, 0.5); /* optional overlay */
  padding: 40px;
  border-radius: 8px;
}

nav {
  float: right;
}

nav a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
  font-weight: bold;
}

#hero {
  text-align: center;
  padding: 100px 20px; 
}

#hero h1 {
  font-size: 48px;
  color: #0b3d91;
}

#hero .btn {
  padding: 10px 25px;
  background: #0b3d91;
  color: white;
  text-decoration: none;
  font-size: 18px;
  border-radius: 5px;
  margin-top: 20px;
  display: inline-block;
}

.section {
  padding: 60px 20px;
  background: #f9f9f9;
}

ul {
  list-style-type: square;
  margin: 20px 0;
  padding-left: 20px;
}

form input, form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form button {
  background: #0b3d91;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}

footer {
  text-align: center;
  padding: 20px;
  background: #eee;
}
