    .enquiry_container{
        margin:80px;
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    .enquiry-title{
        text-align: center;
    }
    .form-section {
        display: grid;
      background: #fff;
      padding: 10px;
      margin-bottom: 30px;
      width: 45%;
      gap:2rem;
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }
     .form-section form {
      display: grid;
      grid-template-columns: repeat(1,1fr);
      gap: 15px;
    }

    .form-section h2 {
        text-align: center;
      color: #0056b3;
      margin-bottom: 20px;
    }


.form-button {
  background-color: #007bff;
  color: white;
  padding: 12px 18px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
  text-align: center;
  width: 100%;
}

.form-button:hover {
  background-color: #0056b3;
}

@media screen and (max-width:800px) {
        
        .enquiry_container{
            min-width: 100%;
        margin:1.5rem auto;
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
    }
        .form-section {
      min-width: 100%;
      gap:2rem;
    }
}

