
header.hero {
  background: linear-gradient(to right, #4facfe, #00f2fe);
  color: white;
  padding: 3rem 1rem;
  text-align: center;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo{
    color: white;
    font-size: 1.5rem;
    margin-right: 5px;
    margin-top: -10px;
    margin-bottom: -10px;
}
.nav-links li{
    display: inline-block;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}
.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}
.nav-links a.active {
  color: #FFD700;
  border-bottom: 2px solid #FFD700;
}
a.active, a:hover{
    color: #FFD700;
    transition: .3s ease;
}
.cta-button {
  background: #fff;
  color: #007B5E;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 1rem;
  display: inline-block;
}


section {
  padding: 2rem;
  text-align: center;
}

.services ul {
  list-style: none;
  padding: 0;
}

.services li {
  margin: 0.5rem 0;
}

.testimonials blockquote {
  font-style: italic;
  margin: 1rem auto;
  max-width: 600px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: auto;
}

input, textarea, button {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  background: #007B5E;
  color: white;
  border: none;
  cursor: pointer;
}

footer {
  background: #eee;
  text-align: center;
  padding: 1rem;
}
@media (max-width: 500px) {
  nav {
    flex-direction: column;
    gap: 1rem;
    }
.nav-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}
@media (max-width: 400px) {
  nav {
    flex-direction: column;
    gap: 1rem;
    margin-top: -10px;
    }
.nav-links {
    flex-direction: column;
    gap: 0.5rem;
  }
  .logo{
    text-align: center;
  }
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-left:  auto;
  margin-right:auto;
}
u{
    text-decoration-color: #FFD700;

}



