body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #111;
  background: #f4f4f4;
}

section {
  padding: 40px 20px;
  text-align: center;
}

.hero {
  background: #00a87d;
  color: #fff;
}

.hero .btn {
  display: inline-block;
  margin-top: 20px;
  background: #fff;
  color: #00a87d;
  padding: 12px 20px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
}

.about,
.contact {
  background: #ffffff;
}

.features {
  background: #f9f9f9;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.feature-box {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.how-it-works {
  background: #ffffff;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.step {
  flex: 1 1 220px;
  background: #f4fefb;
  border-radius: 10px;
  padding: 20px;
}

.circle {
  background: #c6f4d1;
  color: #000;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-block;
  font-weight: bold;
  line-height: 36px;
  margin-bottom: 10px;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 20px;
  text-align: left;
}

.contact-info div {
  max-width: 300px;
}

footer {
  background: #1d2b39;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}
/* --- Larger Font Sizes --- */

/* Headings */
h1 {
  font-size: 42px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 26px;
}

h4 {
  font-size: 22px;
}

/* Paragraphs and text */
p {
  font-size: 20px;
  line-height: 1.8;
}

/* Links inside buttons or text */
a {
  font-size: 20px;
}
/* --- Updated Step Boxes in 'How It Works' Section --- */
.steps .step {
  background: #e2fbe5; /* lighter green */
  border: 1px solid #b6e4c4;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.circle {
  background: #2e9f5f; /* darker green */
  color: #fff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-weight: bold;
}

/* --- Spacing & Styling for 'Get in Touch' Contact Boxes --- */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
  text-align: left;
}

.contact-info div {
  background: #f0fff4; /* soft mint green */
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  max-width: 350px;
  width: 100%;
}
/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
  .feature-grid,
  .steps,
  .contact-info {
    flex-direction: column;
    align-items: center;
  }

  .feature-box,
  .step,
  .contact-info div {
    width: 90%;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 20px;
  }

  p,
  a {
    font-size: 18px;
  }
}
/* Legal footer enhancements */
.site-footer {
  background: #1d2b39;
  color: #fff;
  text-align: center;
  padding: 24px 16px;
  font-size: 14px;
}
.site-footer a {
  color: #ffffff;
  text-decoration: underline;
}
.footer-brand-note {
  margin-bottom: 8px;
  font-size: 15px;
}
.footer-legal {
  opacity: 0.9;
}
