/* styles.css */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
  color: #333;
}

header {
  background: #673DE6;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

header h1 {
  margin: 0;
}

.hero, .features, .cta, section {
  max-width: 800px;
  margin: 20px auto;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.features ul, section ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.features li, section li {
  margin: 10px 0;
  font-size: 18px;
}

.cta form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta form input {
  width: 80%;
  max-width: 300px;
  padding: 10px;
  margin: 5px 0;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.cta form button {
  background-color: #673DE6;
  color: #fff;
  padding: 10px 20px;
  border: none;
  margin-top: 10px;
  border-radius: 5px;
  cursor: pointer;
}
.cta form button:hover {
  background-color: #5630C9;
}

.map {
  width: 100%;
  height: 300px;
  margin-top: 20px;
  border-radius: 10px;
}

footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 10px 0;
  margin-top: 20px;
}
