/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
  background: #fff;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  background: #f8f8f8;
}

.logo h1 {
  font-size: 1.2rem;
}

.hero {
  position: relative;
  text-align: left;
  color: #fff;
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-text {
  position: absolute;
  top: 20%;
  left: 10%;
  background: rgba(0,0,0,0.5);
  padding: 20px;
  border-radius: 10px;
  max-width: 500px;
}

.hero-text h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.how-it-works {
  padding: 40px 20px;
  text-align: center;
  background: #f0f4f8;
}

.steps {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 20px;
}

.step {
  width: 300px;
  margin: 15px;
}

.step img {
  max-width: 150px;
  margin-bottom: 10px;
}

.contact {
  padding: 40px 20px;
  text-align: center;
}

.contact-form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
}

.contact-form button {
  padding: 12px;
  background: #007bff;
  border: none;
  color: #fff;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #0056b3;
}

/* Responsive */
@media (max-width: 768px) {
  .steps {
    flex-direction: column;
    align-items: center;
  }
  .hero-text {
    top: 10%;
    left: 5%;
    max-width: 90%;
  }
}
