* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
}

header {
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
  background: #111;
  color: white;
}

nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
}

nav a {
  color: white;
  text-decoration: none;
}

.hero {
  background: linear-gradient(to right, #00c6ff, #0072ff);
  color: white;
  padding: 120px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 15px;
}

.btn {
  display: inline-block;
  background: white;
  color: #0072ff;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
}

.section {
  padding: 70px 20px;
  text-align: center;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.card {
  background: #f4f4f4;
  padding: 30px;
  width: 250px;
  border-radius: 8px;
}

footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 20px;
}

@media(max-width:768px){
  header {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .hero h1 {
    font-size: 28px;
  }
}