body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background-color: #ffffff;
  color: #1f2937;
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
}

.hero {
  background: #f9fafb;
  text-align: center;
  padding: 100px 20px 60px;
}

.brand {
  font-size: 3rem;
  font-weight: 700;
  color: #1d4ed8;
  margin-bottom: 10px;
}

.hero h2 {
  font-size: 2rem;
  font-weight: 600;
  margin: 0;
}

.tagline {
  font-size: 1.2rem;
  color: #4b5563;
  margin: 20px auto 40px;
  max-width: 600px;
}

.signin-btn {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.benefits h2,
.how-it-works h2,
.contact h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #111827;
}

.benefit-row {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.benefit {
  flex: 1;
  min-width: 250px;
  text-align: center;
}

.benefit img {
  height: 64px;
  margin-bottom: 20px;
}

.benefit h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #1f2937;
}

.benefit p {
  color: #4b5563;
}

.alt-bg {
  background-color: #f3f4f6;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 🟦 force 4 equal columns */
  gap: 40px;
  text-align: center;
  align-items: start;
}

@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr); /* 2x2 on tablets */
  }
}

@media (max-width: 600px) {
  .steps-grid {
    grid-template-columns: 1fr; /* stack on small mobile */
  }
}


.step {
  text-align: center;
}

.step img {
  height: 56px;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #1f2937;
}

.step p {
  color: #4b5563;
}

.contact p {
  text-align: center;
  margin-bottom: 30px;
  color: #4b5563;
}

form#contact-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form#contact-form input,
form#contact-form textarea {
  padding: 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
}

form#contact-form button {
  padding: 12px;
  background-color: #1d4ed8;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}

form#contact-form button:hover {
  background-color: #2563eb;
}

footer {
  background: #ffffff;
  color: #6b7280;
  text-align: center;
  padding: 20px 10px;
  font-size: 0.9rem;
  border-top: 1px solid #e5e7eb;
}

footer a {
  color: #2563eb;
  text-decoration: none;
  margin-left: 10px;
}
