
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: #222;
  background: #fff;
}
header {
  background: #0c214a;
  color: white;
  padding: 2rem;
  text-align: center;
}
nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
}
nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}
.hero {
  background: url('img/hero-image.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 6rem 1rem;
}
.hero h1 {
  font-size: 2.5rem;
}
.cta-button {
  background: #2aa7ff;
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 6px;
  display: inline-block;
  margin-top: 1rem;
}
section {
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: auto;
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.card {
  background: #f5f5f5;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
}
.process {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.step {
  flex: 1 1 200px;
  text-align: center;
}
footer {
  background: #0c214a;
  color: white;
  text-align: center;
  padding: 2rem;
}


.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 2rem auto;
}
.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: inherit;
}
.contact-form button {
  background-color: #2aa7ff;
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
}
