* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #00aed6;
  color: #0f172a;
}

.navbar {
  background: #0b3c5d;
  padding: 15px;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-weight: bold;
}

.logo img {
  height: 32px;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 15px;
  padding: 6px 14px;
  border: 1px solid white;
  border-radius: 20px;
  font-size: 14px;
}

.hero {
  background: #f0f9ff;
  margin: 40px auto;
  max-width: 1100px;
  padding: 80px 20px;
  border-radius: 30px;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  font-weight: 800;
}

.hero span {
  color: #0ea5e9;
}

.box {
  background: white;
  max-width: 1100px;
  margin: 30px auto;
  padding: 40px;
  border-radius: 30px;
  position: relative;
}

.box-number {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 24px;
  color: #94a3b8;
}

.cards {
  max-width: 1100px;
  margin: 40px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.card {
  background: white;
  padding: 30px;
  border-radius: 25px;
  text-align: center;
  font-size: 16px;
}

.cta {
  background: white;
  max-width: 1100px;
  margin: 60px auto;
  padding: 60px 30px;
  border-radius: 30px;
  text-align: center;
}

.cta-buttons {
  margin-top: 20px;
}

.btn {
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  margin: 0 10px;
  font-weight: bold;
}

.primary {
  background: #0ea5e9;
  color: white;
}

.outline {
  border: 2px solid #0ea5e9;
  color: #0ea5e9;
}

.footer {
  text-align: center;
  padding: 20px;
  color: white;
}