/* General */
body {
  margin: 0;
  font-family: "Segoe UI", Roboto, system-ui, sans-serif;
  background: #f4f6f8;
  color: #222;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #ffffff;
  border-bottom: 1px solid #e1e1e1;
}

.logo-area {
  display: flex;
  align-items: center;
}

.site-logo {
  height: 48px;
  margin-right: 0.75rem;
}

header a {
  text-decoration: none;
  color: inherit;
}

/* Hero */
.hero {
  text-align: center;
  padding: 4rem 1rem;
  max-width: 700px;
  margin: auto;
}

.hero h1 {
  font-size: 2.4rem;
  color: #14213d;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 2rem;
}

/* Button */
.btn {
  background: #14213d;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s;
}

.btn:hover {
  background: #1f2e54;
}

/* How It Works */
.how-it-works {
  background: white;
  padding: 3rem 1rem;
  margin-top: 2rem;
}

.how-it-works h2 {
  text-align: center;
  font-size: 2rem;
  color: #14213d;
  margin-bottom: 2rem;
}

.how-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Center items by default */
  gap: 2rem;
}

.step-box {
  background: #ffffff;
  padding: 2rem;
  border-radius: 16px;
  width: 280px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Ensure centered layout even if only 1 item is present */
.how-grid:only-child,
.how-grid > :only-child {
  margin-left: auto;
  margin-right: auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: auto;
}

.step {
  background: #f8f9fb;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  text-align: center;
}

.step h3 {
  color: #14213d;
}

.step p {
  color: #555;
}

/* Footer */
.footer {
  text-align: center;
  padding: 1.5rem;
  background: #ffffff;
  border-top: 1px solid #e1e1e1;
  color: #555;
  font-size: 0.9rem;
}

.pricing {
  padding: 3rem 1rem;
  background: #ffffff;
  margin-top: 2rem;
}

.pricing h2 {
  text-align: center;
  font-size: 2rem;
  color: #14213d;
  margin-bottom: 2rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: auto;
}

.price-card {
  background: #f8f9fb;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.price-card.popular {
  border: 2px solid #14213d;
}

.price-card h3 {
  margin-bottom: 0.5rem;
  color: #14213d;
}

.price {
  font-size: 1.7rem;
  font-weight: bold;
  margin: 0.5rem 0 1rem;
}

.price-card ul {
  list-style: none;
  padding: 0;
  color: #555;
}

.price-card ul li {
  margin: 0.4rem 0;
}

.contact {
  padding: 3rem 1rem;
  background: #f4f6f8;
  text-align: center;
}

.contact h2 {
  color: #14213d;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-desc {
  color: #555;
  margin-bottom: 1.5rem;
}

.contact-info {
  background: #ffffff;
  display: inline-block;
  padding: 1.5rem 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  font-size: 1.05rem;
}

.faq {
  padding: 3rem 1rem;
  max-width: 800px;
  margin: auto;
}

.faq h2 {
  text-align: center;
  font-size: 2rem;
  color: #14213d;
  margin-bottom: 2rem;
}

.faq-item {
  margin-bottom: 1rem;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.faq-question {
  width: 100%;
  padding: 1rem;
  background: #f4f6f8;
  border: none;
  border-radius: 10px;
  text-align: left;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 500;
  color: #14213d;
}

.faq-answer {
  display: none;
  padding: 1rem;
  font-size: 0.95rem;
  color: #444;
}

.faq {
  background: #ffffff;
  padding: 3rem 2rem;
  margin-top: 3rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
