style.css

/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
}

header {
  background: #222;
  color: #fff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  display: flex;
  align-items: center;
}

header .logo img {
  width: 50px;
  margin-right: 10px;
}

nav ul {
  list-style: none;
  display: flex;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

#hero {
  background: url('images/logo.png') no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  background-color: #0077b6; /* fallback */
}

#hero h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

#hero button {
  background: #ffb703;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
}

section {
  padding: 50px 20px;
  max-width: 900px;
  margin: auto;
}

section h2 {
  margin-bottom: 20px;
  color: #0077b6;
}

footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 20px;
}
