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

header {
  background-color: #2E003E;
  color: white;
  padding: 1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5em;
  font-weight: bold;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2em;
}

nav a {
  color: white;
  text-decoration: none;
}

.banner {
  display: flex;
  justify-content: center;
  gap: 1em;
  padding: 2em;
  background-color: #fff;
}

.banner img {
  max-height: 150px;
  border-radius: 10px;
  animation: swapImages 10s infinite cubic-bezier(0.6, 0.05, 0.2, 0.95);
}

@keyframes swapImages {
  0%   { transform: translateX(-100%); }
  10%  { transform: translateX(0); }
  90%  { transform: translateX(0); }
  100% { transform: translateX(100%); }
}


.hero {
  text-align: center;
  padding: 2em 2em;
  background-color: #e0f0ff;
}

.hero h1 {
  font-size: 2.5em;
  margin-bottom: 0.5em;
}

.cta-button {
  display: inline-block;
  margin-top: 1em;
  padding: 0.75em 1.5em;
  background-color: #004aad;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.how-it-works, .why-us, .locations, .contact {
  padding: 1em;
  text-align: center;
}

.steps {
  display: flex;
  justify-content: center;
  gap: 2em;
  margin-top: 1em;
}

.why-us ul, .locations ul {
  list-style: none;
  padding: 0;
}

.why-us li, .locations li {
  margin: 0.5em 0;
}

.contact form {
  display: inline-block;
  text-align: left;
  max-width: 400px;
}

.contact input, .contact textarea {
  width: 100%;
  margin-bottom: 1em;
  padding: 0.5em;
}

footer {
  background-color: #004aad;
  color: white;
  text-align: center;
  padding: 1em;
  margin-top: 2em;
}

@media (max-width: 768px) {
  .banner {
    flex-direction: column;
    align-items: center;
  }
  .steps {
    flex-direction: column;
    align-items: center;
  }
  header {
    flex-direction: column;
    text-align: center;
  }
  nav ul {
    flex-direction: column;
    gap: 1em;
  }
}
