* {

  margin: 0;

  padding: 0;

  box-sizing: border-box;

  font-family: "Poppins", sans-serif;

}

body {

  background-color: #ffffff;

  color: #222;

}

header {

  background: linear-gradient(to right, #ff0000, #0044cc);

  color: white;

  padding: 15px 30px;

  display: flex;

  justify-content: space-between;

  align-items: center;

}

header .logo {

  font-size: 1.5em;

  font-weight: bold;

}

nav a {

  color: white;

  text-decoration: none;

  margin: 0 10px;

  font-weight: 500;

}

nav a:hover,

nav a.active {

  text-decoration: underline;

}

.hero {

  text-align: center;

  padding: 100px 20px;

  background: linear-gradient(to right, #0044cc, #ff0000);

  color: white;

}

.content {

  padding: 60px 20px;

  max-width: 900px;

  margin: auto;

}

.content h2 {

  color: #0044cc;

  margin-bottom: 20px;

}

.content ul {

  list-style-type: none;

  line-height: 2em;

}

footer {

  background-color: #00224d;

  color: white;

  text-align: center;

  padding: 20px;

  margin-top: 40px;

  font-size: 0.9em;

}
 
