body { margin: 0; font-family: sans-serif; background: #fff; color: #222; }
    header { display: flex; justify-content: space-between; align-items: center; padding: 20px 40px; border-bottom: 1px solid #eee; }
    .logo { display: flex; align-items: center; gap: 10px; }
    .logo img { height: 40px; border-radius: 8px; }
    nav a { margin-left: 24px; font-weight: 500; color: #111; text-decoration: none; }
    nav .btn { background: #1e824c; color: #fff; padding: 10px 18px; border-radius: 6px; text-decoration: none; font-weight: 600; }
    .hero { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; padding: 60px 20px; gap: 40px; background: #fff; }
    .hero-text { max-width: 480px; }
    .hero h1 { font-size: 36px; margin-bottom: 20px; line-height: 1.3; }
    .hero p { font-size: 18px; margin-bottom: 24px; }
    .hero .btn { background: #1e824c; padding: 12px 20px; border-radius: 6px; color: #fff; font-size: 16px; text-decoration: none; font-weight: 600; }
    .hero ul { list-style: none; padding: 0; margin: 20px 0; line-height: 1.6; }
    .hero ul li::before { content: "• "; color: #1e824c; font-weight: bold; }
    .hero-img img { max-width: 350px; height: auto; border-radius: 12px; }
    section { padding: 60px 20px; max-width: 1000px; margin: auto; }
    h2 { color: #1e824c; font-size: 28px; margin-bottom: 20px; }
    .services { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
    .services div { padding: 20px; background: #f8f8f8; border-radius: 8px; box-shadow: 0 2px 5px rgba(0,0,0,0.03); }
    footer { text-align: center; padding: 40px 20px; background: #f2f2f2; font-size: 14px; color: #555; }


@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }
  nav {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-top: 20px;
  }
  nav a {
    margin-left: 0;
  }
  .hero {
    flex-direction: column;
    padding: 40px 20px;
    text-align: center;
  }
  .hero-img img {
    max-width: 100%;
  }
  .hero-text, .services div {
    width: 100%;
  }
  section {
    padding: 40px 20px;
  }
  h1 {
    font-size: 28px;
  }
  h2 {
    font-size: 24px;
  }
  nav .btn, .hero .btn {
    width: 100%;
    text-align: center;
  }
}


.form-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.6); display: flex; justify-content: center; align-items: center;
  z-index: 1000;
}
.form-popup {
  background: #fff; padding: 20px; border-radius: 10px; max-width: 400px; width: 90%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.form-popup h2 { margin-top: 0; }
.form-popup input, .form-popup textarea {
  width: 100%; margin-bottom: 10px; padding: 8px; border: 1px solid #ccc; border-radius: 4px;
}
.form-popup button {
  margin-right: 10px; padding: 10px 16px; background: #1e824c; color: white; border: none; border-radius: 6px;
  cursor: pointer;
}
