/* styles.css */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #fefefe;
  color: #333;
}

header.hero {
  background: #3b3054;
  color: #fff;
  padding: 3rem;
  text-align: center;
}

.logo {
  text-align: left;
  margin-left: 1rem;
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 1rem;
}

.nav-menu {
  justify-content: center;
  list-style: none;
  display: flex;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}

.nav-menu a, .cta, .hero-btn, .read-more {
  text-decoration: none;
  color: #fff;
  background: #ff6f61;
  padding: 0.5rem 1rem;
  border-radius: 5px;
}

.features, .our-services {
  display: flex;
  justify-content: space-around;
  padding: 2rem;
  background-color: #f4f4f4;
}

.feature-box, .service-box {
  max-width: 300px;
  text-align: center;
}

.about-us {
  background: linear-gradient(to right, #e0eafc, #cfdef3);
  padding: 4rem 2rem;
  text-align: center;
  color: #333;
}

.about-us h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-us p {
  max-width: 700px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.our-services {
 background-color: white;
  padding: 4rem 2rem;
  text-align: center;
    color: #333;
}

.our-services h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.service-box img {
  margin: 100;
  margin-bottom: 1rem;
  gap:1.5rem;
}

.service-box h3 {
  color: #3b3054;
  margin-bottom: 0.5rem;
}

.service-box p {
  font-size: 0.95rem;
  color: #555;
}

.contacts {
   background: linear-gradient(to right, #e0eafc, #cfdef3);
  
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
}

.contacts form {
  background-color: #f0f0f0;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 500px;
}

.contacts h2 {
  text-align: center;
  margin-bottom: 1rem;
  color: #3b3054;
}

footer.footer {
  background-color: #222;
  color: #ccc;
  text-align: center;
  padding: 1rem;
}



form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
}

input, textarea {
  margin-bottom: 1em;
  padding: 0.5em;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  padding: 0.5em;
  background: #e74c3c;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-menu {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    margin-top: 1rem;
  }

  .cta {
    margin-top: 1rem;
    align-self: flex-start;
  }

  .features, .our-services {
    flex-direction: column;
    align-items: center;
  }

  .social-icons {
    flex-direction: column;
    gap: 0.5rem;
  }
}
