.top-bar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.login-btn {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 8px 18px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.login-btn:hover {
  background: #ffffff;
  color: #0f4c81;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  background-color: #f5f7fa;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

.hero {
  background: linear-gradient(135deg, #0f4c81, #1c77c3);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero h3 {
  font-weight: 400;
  margin-bottom: 15px;
}

.hero p {
  max-width: 700px;
  margin: 0 auto 30px;
}

.coupon-track {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.coupon-track input {
  padding: 12px;
  width: 260px;
  border-radius: 6px;
  border: none;
  font-size: 1rem;
}

.coupon-track button {
  padding: 12px 25px;
  background: #ffcc00;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
}

.coupon-track button:hover {
  background: #e6b800;
}

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

.btn {
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 6px;
  margin: 0 5px;
  display: inline-block;
}

.btn.primary {
  background: #ffcc00;
  color: #000;
}

.btn.secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn:hover {
  opacity: 0.9;
}

.how-it-works {
  background: #fff;
  padding: 50px 0;
}

.how-it-works h2 {
  text-align: center;
  margin-bottom: 20px;
}

.how-it-works ol {
  max-width: 500px;
  margin: auto;
  font-size: 1.1rem;
}

footer {
  background: #0f4c81;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

.footer-links {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ffcc00;
  margin: 0 10px;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}