body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4f7fb;
}

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

/* TOPBAR */
.topbar {
  background: #0d1b2a;
  color: white;
  font-size: 13px;
  padding: 8px;
  text-align: center;
}

/* HEADER */
.header {
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.logo a {
  text-decoration: none;
  font-size: 22px;
  font-weight: bold;
}

.prime { color: #ff6b00; }
.ins { color: #1e293b; }
.uk { color: #2563eb; }

nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #1e293b;
  font-weight: 500;
}

.header-cta a {
  background: #ff6b00;
  color: white;
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 5px;
}

/* HERO */
.hero {
  text-align: center;
  padding: 70px 20px;
  background: linear-gradient(to right, #f8fafc, #e2e8f0);
}

.hero h1 {
  font-size: 34px;
}

.trust-badges {
  margin: 10px 0;
  color: green;
}

.compare-box input,
.compare-box select {
  padding: 10px;
  margin: 5px;
}

.compare-box button {
  padding: 12px 20px;
  background: #ff6b00;
  color: white;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

/* SECTIONS */
section {
  padding: 50px 20px;
  text-align: center;
}

.step-grid,
.feature-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.step,
.feature-grid div {
  background: white;
  padding: 20px;
  border-radius: 10px;
}

/* FOOTER */
.footer {
  background: #0d1b2a;
  color: white;
}

.footer-grid {
  display: flex;
  gap: 40px;
  padding: 40px 0;
  flex-wrap: wrap;
}

.footer-col h4, .footer-col h3 {
  margin-bottom: 10px;
}

.footer-col a {
  display: block;
  color: #ccc;
  text-decoration: none;
  margin: 5px 0;
}

.footer-bottom {
  text-align: center;
  padding: 20px;
  border-top: 1px solid #333;
}