body {
  font-family: sans-serif;
  margin: 0;
  background: #f8f9fa;
  color: #333;
}
footer {
  background: #0a3d62;
  color: #fff;
  padding: 1rem;
}
header nav a {
  margin: 0 1rem;
  color: white;
  text-decoration: none;
}
main {
  padding: .5rem;
}
.hero-wrapper{
  background-image: url('/hero.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 50vh;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}
.hero, header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: .5rem;
  color: black;
}
.services, .consultation, .contact {
  padding: 2rem;
  text-align: center;
  margin: 0 auto;
}
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.service-grid div {
  background: white;
  padding: 1rem;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  width: 200px;
  text-align: center;
}
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
}
input, textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}
button {
  padding: 0.75rem;
  background: #0a3d62;
  color: white;
  border: none;
  border-radius: 4px;
}
.centered {
  text-align: center;
  margin: 0 auto;
}
.left-align {
  text-align: left;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-nav a {
  color: black;
  text-decoration: none;
  margin-left: 1.5rem;
  font-weight: bold;
  font-size: 1rem;
}
.hero-logo {
  height: 160px;
}
.outlined-text {
  color: white;
  font-weight: bolder;
  font-size: larger;
  text-shadow: 
    -2px -2px 0 #000,
    2px -2px 0 #000,
    -2px 2px 0 #000,
    2px 2px 0 #000;
}
.cta-button {
  padding: 1rem 2rem;       /* top/bottom and left/right padding */
  font-size: 1.25rem;       /* larger text */
  border-radius: 8px;       /* optional: rounded corners */
  background-color: #1e90ff;
  color: white;
  border: none;
  cursor: pointer;
}
.menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: black;
  cursor: pointer;
}

/* 📱 Mobile styles */
@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    background-color: whitesmoke;
    position: absolute;
    top: 70px;
    right: 2rem;
    padding: 1rem;
    border-radius: 8px;
  }

  nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}