p {
    /* 1.6 is generally considered the gold standard for readability */
    line-height: 1.6; 
    
    /* Adds space between separate paragraphs */
    margin-bottom: 20px; 
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f4f6fa;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
  text-align: center;
}

.hero {
  background: linear-gradient(135deg, #0a1f44, #1e3a8a);
  color: white;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 52px;
}

.sub {
  margin-top: 10px;
  opacity: 0.9;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 28px;
  background: #2563eb;
  color: white;
  border-radius: 10px;
  text-decoration: none;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.card {
  background: white;
  padding: 25px;
  border-radius: 14px;
  text-align: left;
}

.highlight {
  background: #e0edff;
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
}

.alt-section {
  background: white;
}

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 30px;
}

.pricing {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.highlight-card {
  border: 2px solid #2563eb;
}

.price {
  font-size: 22px;
  font-weight: bold;
}

.cta {
  background: #111827;
  color: white;
  padding: 80px 20px;
}

.footer {
  background: #0f172a;
  color: #cbd5e1;
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  text-align: left;
}

.footer a {
  color: #cbd5e1;
  text-decoration: none;
}

.app-badges img {
  height: 40px;
  margin-right: 10px;
  margin-top: 10px;
}

.map-container iframe {
  width: 100%;
  height: 250px;
  border: 0;
}

.footer-bottom {
  text-align: center;
  padding: 20px;
}
