
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  background: #f9f9f9;
  color: #333;
}
.hero-section {
  text-align: center;
  padding: 20px;
}
.hero-logo {
  width: 80px;
  margin: 20px auto;
}
.hero-content {
  padding: 10px 20px;
}
h1 {
  font-size: 1.8em;
  font-weight: 700;
  margin-bottom: 10px;
}
.cta-button {
  background: #d72638;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  display: inline-block;
  margin-top: 15px;
}
.experience {
  margin-top: 10px;
  font-weight: bold;
  color: #000;
}
section {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}
.how-it-works .steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}
.icon {
  font-size: 40px;
}
@media(min-width: 700px) {
  .how-it-works .steps {
    flex-direction: row;
    justify-content: space-between;
  }
}
.info-section {
  background: #444;
  color: white;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
}
.info-right ul {
  list-style: none;
  padding-left: 0;
}
.info-right li {
  margin: 8px 0;
}
@media(min-width: 700px) {
  .info-section {
    flex-direction: row;
    justify-content: space-between;
  }
  .info-left, .info-right {
    flex: 1;
    padding: 0 20px;
  }
}
.services-contact {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media(min-width: 700px) {
  .services-contact {
    flex-direction: row;
    justify-content: space-between;
  }
  .services, .contact {
    flex: 1;
  }
}
footer {
  text-align: center;
  padding: 20px;
  background: #eee;
}
