* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
  background: linear-gradient(-80deg, #f7a500 10%, #061F3F 80%);

  color: #1a1a1a;
}

.topbar {
  background: linear-gradient(-100deg, #f7a500 1%, #061F3F 80%);
padding: 14px 1
60px;
border: ;


  padding: 15px 200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 800;
  font-size: 18px;
  color: #002b5b;
}

.logo span {
  color: white;
}

.actions {
  display: flex;
  align-items: center;
}

.actions button {
  border: none;
  cursor: pointer;
}

.btn-outline {
  background: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  margin-right: 8px;
}

.btn-icon {
  background: #002b5b;
  color: white;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero {
  
  
  padding: 50px 20px;
  color: white;
}

.hero-text h1 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
}

.btn-primary {
  background: #002b5b;
  padding: 12px 20px;
  border-radius: 30px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.menu-card {
  background: white;
  margin: -30px 20px 20px;
  padding: 25px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.menu-card h3 {
  margin-bottom: 20px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.menu-item {
  text-align: center;
}

.menu-item i {
  font-size: 22px;
  color: #f9b800;
  background: #002b5b;
  padding: 12px;
  border-radius: 16px;
  margin-bottom: 6px;
}

.menu-item span {
  font-size: 12px;
  font-weight: 600;
}

.feature {
  padding: 30px 20px;
  text-align: center;
}

.icon-row {
  display: flex;
  justify-content: space-around;
  margin: 20px 0;
}

.icon-row i {
  font-size: 20px;
  background: #002b5b;
  color: white;
  padding: 12px;
  border-radius: 50%;
  margin-bottom: 6px;
}

.icon-row span {
  display: block;
  font-size: 12px;
  font-weight: 600;
}

.footer {
  background: #001a3a;
  color: white;
  text-align: center;
  padding: 15px;
  font-size: 12px;
}