* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, sans-serif;
  background: #f7f7f7;
  color: #222;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}


.nav {
  background: white;
  border-bottom: 1px solid #eee;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  font-weight: 600;
  font-size: 20px;
}

nav a {
  margin-right: 20px;
  text-decoration: none;
  color: #444;
}

.btn {
  background: #4f7f5f;
  color: white;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
}

.btn.large {
  padding: 14px 26px;
  font-size: 18px;
}




.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center
}

.hero {
  height: 550px;
  
  background-image: url("images/hello-hero.png");
  background-size: cover;
background-color: #e8e4df; /* match the image edges so no white gaps */
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
  color: #222;
}


.hero-text h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #555;
}

.hero-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}


.features {
  padding: 80px 0;
  background: white;
}

.features h2 {
  text-align: center;
  margin-bottom: 50px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature {
  background: #f7f7f7;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
}

.feature h3 {
  margin-bottom: 10px;
}


.download {
  padding: 80px 0;
  text-align: center;
}

.footer {
  background: white;
  border-top: 1px solid #eee;
}

.footer-inner {
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links a {
  margin-left: 20px;
  text-decoration: none;
  color: #444;
}


.legal {
  padding: 60px 0 80px;
  background: white;
}

.legal h1 {
  font-size: 32px;
  margin-bottom: 6px;
}

.legal-updated {
  color: #888;
  font-size: 14px;
  margin-bottom: 40px;
}

.legal h2 {
  margin-top: 40px;
  margin-bottom: 12px;
  font-size: 20px;
}

.legal h3 {
  margin-top: 24px;
  margin-bottom: 8px;
  font-size: 17px;
}

.legal p,
.legal li {
  line-height: 1.7;
  color: #444;
}

.legal ul {
  padding-left: 24px;
}

.legal li {
  margin-bottom: 8px;
}

.logo {
  text-decoration: none;
  color: inherit;
}


.contact-form {
  max-width: 520px;
  margin-top: 40px;
}

.contact-form label {
  display: block;
  margin-bottom: 6px;
  margin-top: 20px;
  font-weight: 500;
  color: #333;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  background: #f7f7f7;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #4f7f5f;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .btn {
  margin-top: 28px;
  border: none;
  cursor: pointer;
  font-family: inherit;
}