   body{
    margin: 0;
    padding: 0;

   }
header {
  background-color: #111;
  padding: 1.5rem;
  color: white;
}


h1 {
  margin: 0;
  text-align: center; 
  font-size: 2rem;
}


.initial-info {
  background: #222;
  display: flex;
  justify-content: center;
  align-items: center; 
  color: white;
  padding: 0.5rem 1rem;
  font-size: 19px;
  text-align: center;
}
   
   
   
   
   
   
   .slide-container {
      width: 100%;
      height: 72vh;
      overflow: hidden;
      position: relative;
    }

    input {
      display: none;
    }

    .slides {
      display: flex;
      width: 500%;
      height: 100%;
      transition: margin 0.5s ease-in-out;
    }

    .slide {
      width: 20%;
      flex-shrink: 0;
    }

    .slide img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }

    .nav {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
    }

    .bar {
      width: 75px;
      height: 5px;
      border: 1px solid #0000004f;
      margin: 6px;
      border-radius: 5px;
      cursor: pointer;
      transition: .2s;
    }

    .bar:hover {
      background-color: #00000050;
    }

    #slide1:checked ~ .slides {
      margin-left: 0;
    }

    #slide2:checked ~ .slides {
      margin-left: -100%;
    }

    #slide3:checked ~ .slides {
      margin-left: -200%;
    }

    #slide4:checked ~ .slides {
      margin-left: -300%;
    }

    #slide5:checked ~ .slides {
      margin-left: -400%;
    }


.box-container {
  display: block;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 2rem auto;
  padding: 1rem;
  max-width: 1200px;
  align-items: center;
}


.box.img {
  flex: 1 1 30%;
}

.box.img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}


.box-content {
  background-color: #f0f0f0;          
  color: #2f2f2f;                      
  padding: 24px;
 
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05); 
  font-family: 'Segoe UI', sans-serif;
  width:100%; 
  margin: 20px auto;
  }

.box-content h2 {
  color: #444;                         
  font-size: 24px;
  margin-bottom: 10px;
}
.box-content li{
     line-height: 2rem;
     color: #444;

}

.box-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;                 
  margin-bottom: 20px;
}

.box-content button {
  background-color: #3a3a3a;          
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.box-content button:hover {
  background-color: #5a5a5a;          
}
.form-wrapper {
  max-width: 500px;
  margin: 40px auto;
  padding: 20px;
  background: #f7f7f7;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  font-family: sans-serif;
}

form h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
  color: #444;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}

textarea {
  resize: vertical;
  background-color: #fffdfd;
}

button[type="submit"] {
  background-color: #3498db;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  width: 100%;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #2980b9;
}
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 10px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
  display: block;  
  background-color: white; 
}
.quote-box {
  background-color: #eaeaea;                
  color: #333;                              
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);   
  max-width: 500px;
  margin: 30px auto;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}
.after-img{
  background-color: #eaeaea;               
  color: #333;                             
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);   
  max-width: 500px;
  margin: 30px auto;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  max-width: 77%;
}
.after-img h2{
      margin-top: 0;
  font-size: 22px;
  color: #2c2c2c;

}
.after-img p{
      font-size: 16px;
  margin: 15px 0 20px;
  color: #555;
}

.quote-box h3 {
  margin-top: 0;
  font-size: 22px;
  color: #2c2c2c;
}

.quote-box p {
  font-size: 16px;
  margin: 15px 0 20px;
  color: #555;
}



  @media (max-width: 768px) 
  
  
  {*{
    box-sizing: border-box;
  }

  h1 {
    font-size: 1.5rem;
  }

  .initial-info {
    flex-direction: column;
    padding: 1rem;
    font-size: 16px;
  }

  .slide-container {
    height: 40vh;
  }

  .slides {
    width: 500%;
    height: 100%;
  }

  .bar {
    width: 40px;
    height: 4px;
  }

  .box-container {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  .box .img,
  .box-content {
    flex: 1 1 100%;
    width: 100%;
  }

  .box-content {
    padding: 1rem;
  }

  .form-wrapper,
  .quote-box,
  .after-img {
    width: 90%;
    margin: 20px auto;
  }

  .form-group input,
  .form-group textarea,
  button[type="submit"] {
    font-size: 14px;
    padding: 10px;
  }
}