/* Base styles */
html, body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background-color: #f9fafb;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 0;
}

h1, h2, h3, h4 {
  font-family: 'Merriweather', serif;
  color: #1f6feb;
  margin-top: 0;
}

p {
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Hero Section */
.hero {
  background-color: #1ea672;
  color: #fff;
  text-align: center;
  padding: 4rem 0;
}

.hero-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.btn {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-primary {
  background-color: #1f6feb;
  color: #fff;
}

.btn-secondary {
  background-color: #1ea672;
  color: #fff;
  margin-top: 1rem;
}

.btn:hover {
  opacity: 0.9;
}

/* Section styling */
.section-title {
  text-align: center;
  margin-bottom: 2rem;
  color: #1f6feb;
}

.how-it-works, .eligibility, .homeowners, .investors, .faq, .waitlist {
  padding: 3rem 0;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.step {
  flex: 1 1 30%;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
}

.eligibility ul {
  list-style: disc inside;
  padding-left: 1rem;
}

.homeowners p, .investors p {
  max-width: 800px;
  margin: 0 auto 1.5rem;
  text-align: center;
}

.faq details {
  margin-bottom: 1rem;
  background: #fff;
  padding: 1rem;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: #1f6feb;
}

.faq summary::-webkit-details-marker {
  display: none;
}

/* Waitlist Form */
.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  box-sizing: border-box;
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.checkbox label {
  display: flex;
  align-items: center;
  font-weight: normal;
}

.checkbox input[type="checkbox"] {
  margin-right: 0.5rem;
}

/* Footer */
.footer {
  background-color: #1f6feb;
  color: #fff;
  text-align: center;
  padding: 1.5rem 0;
}

.footer a {
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .steps {
    flex-direction: column;
    align-items: center;
  }
  .step {
    flex: 1 1 80%;
  }
}