:root {
    --blue: #2563eb;
    --gray-light: #f9fafb;
    --gray: #6b7280;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', sans-serif;
  }

  body {
    padding: 0 5rem ;
    background: white;
    color: black;
    line-height: 1.6;
  }
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
  }

  .burger {
      display: none;
      font-size: 2rem;
      background: none;
      border: none;
      color: black;
      cursor: pointer;
      padding: 0;
      }


  .nav-links {
      display: flex;
      gap: 1.5rem;
      }

  .logo {
    display: flex;
    align-items: center;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-decoration: none;
    transition: opacity 0.3s ease;
  }

  .logo img {
    height: 40px;
    margin-right: 0.75rem;
  }

  .logo:hover {
    opacity: 0.7;
  }

  nav {
    display: flex;
    gap: 1.5rem;
  }

  nav a {
    text-decoration: none;
    color: black;
    font-weight: bold;
  }

  nav a:hover {
    color: var(--blue);
  }

  .hero {
    padding: 6rem 2rem 4rem;
    max-width: 1000px;
    margin: auto;
    text-align: center;
  }

  .hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
  }

  .hero h2{
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--gray);
  }

  .button {
    background: var(--blue);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: bold;
    text-decoration: none;
  }

  .services {
    display: flex;
    justify-content: space-around;
    background: var(--gray-light);
    padding: 4rem 2rem;
  }

  .services div {
    max-width: 400px;
  }

  .services h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }

  .services p {
    color: var(--gray);
  }

  .home-about {
    background: var(--gray-light);
    padding: 4rem 2rem;
    text-align: center;
  }
  
  .home-about h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
  }

  .home-about a {
    text-decoration: none;
    color: #2563eb;
  }

  .home-about img{
    max-width: 100%;
    height: auto;
  }
  
  .home-about:hover {
    color: var(--gray);
  }

  .home-about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 900px;
    margin: auto;
  }
  
  .about-thumb {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .home-about-text {
    max-width: 500px;
    text-align: left;
    color: var(--gray);
  }

  .testimonials {
    background-color: white;
    padding: 4rem 2rem;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
    }


.testimonials h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.testimonial-row {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.testimonial-block {
  flex: 1 1 250px;
  max-width: 300px;
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.testimonial-block:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.client-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.testimonial-block p {
  font-style: italic;
  color: #333;
}

.testimonial-block .author {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-weight: bold;
  color: var(--gray);
}

.process {
  max-width: 900px;
  margin: auto auto;
  padding: 4rem 2rem;
  text-align: center;
  border-bottom: 1px solid #e5e7eb;
}

.process h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #2563eb;
}

.step p {
  font-size: 1rem;
  color: #4b5563;
}

  form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .name-row {
    display: flex;
    gap: 1rem;
  }
  
  .name-row input {
    flex: 1;
  }

  select {
appearance: none;
-webkit-appearance: none;
-moz-appearance: none;
padding: 0.75rem 1.5rem 0.75rem 0.75rem;
border: 1px solid #ccc;
border-radius: 8px;
font-size: 1rem;
background-color: white;
background-image: url("data:image/svg+xml,%3Csvg fill='black' height='32' viewBox='0 0 24 24' width='32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: right 1rem center;
background-size: 1.5rem;
}




  input, textarea {
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
  }

  button {
    background: var(--blue);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 9999px;
    font-weight: bold;
    cursor: pointer;
  }

  button:hover {
    background: #1e4ed8;
  }

  

  section#contact {
    padding: 4rem 2rem;
    text-align: center;
    max-width: 700px;
    margin: auto;

  }

  section#contact h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
  }

  .form-note {
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 0.5rem;
    text-align: center;
  }
  

  footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid #e5e7eb;
    font-size: 0.875rem;
    color: var(--gray);
  }

  footer a {
    color: var(--gray);
    text-decoration: none;
    margin: 0 0.5rem;
    font-weight: bold;
    transition: color 0.3s ease;
  }

  footer a:hover {
    color: var(--blue);
    text-decoration: underline;
  }

  .faq-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: var(--blue);
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: transform 0.3s ease;
}

.faq-toggle.rotate {
  transform: rotate(45deg);
}

.faq-box {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 300px;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  z-index: 1000;
}

.faq-box.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.faq-box h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.faq-box ul {
  list-style: none;
  padding-left: 0;
  font-size: 0.95rem;
}

.faq-box li {
  margin-bottom: 1rem;
}

  @media (max-width: 768px) {
    body {
      padding: 0 1.5rem;
    }

    .burger {
      display: block;
    }

    .burger:hover{
      background-color: inherit;
    }

    .nav-links {
      display: none;
      flex-direction: column;
      gap: 3rem;
      position: absolute;
      top: 100%;
      right: 0;
      font-size: 1.2rem;
      background: white;
      padding: 3rem;
      box-shadow: 0 10px 20px rgba(0,0,0,0.05);
      z-index: 10;
    }

    .nav-links.active {
      display: flex;
    }

    .services {
      flex-direction: column;
      align-items: center;
      padding: 3rem 1rem;
    }

    .services div {
      max-width: 100%;
      margin-bottom: 2rem;
    }

    .home-about-content {
      flex-direction: column;
      text-align: center;
    }
    .home-about-text {
      text-align: center;
    }

    .steps {
      grid-template-columns: 1fr;
    }

    section#contact form {
      width: 100%;
    }

    input, textarea {
      font-size: 1rem;
    }

    .button {
      width: 100%;
      text-align: center;
    }
    .name-row {
      flex-direction: column;
    }
  }