* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: Arial, sans-serif;
}

/* Header Section */
header {
  background-color: #d3d3d3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
}

.logo {
  font-size: 36px;
  font-weight: bold;
  color: blue;
}

.nav-links a {
  margin-left: 20px;
  text-decoration: none;
  color: #003366;
  font-size: 14px;
}

/* Background Image Section */
.hero {
  height: 90vh;
  background-image: url('/images/bg.jpg'); /* You can replace this with your own image */
  background-size: cover;
  background-position: center;
}
