body {
    font-family: 'karla', sans-serif;
    background-color: hsl(148, 38%, 91%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    color: hsl(187, 24%, 22%)
  }
  
  .contact-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    max-height: 700px;
  }
  
  .contact-card h1 {
    margin-top: 0;
    font-size: 24px;
    text-align: left;
    color: hsl(187, 24%, 22%)
  }
  
  form {
    display: flex;
    flex-direction: column;
    color: hsl(187, 24%, 22%);
    font-size: 1rem;
  }
  
  .name-container {
    display: flex;
    justify-content: space-between;
  }
  
  .input-group {
    display: flex;
    flex-direction: column;
    width: 48%;
  }
  
  label {
    margin-top: 10px;
    font-weight: bold;
  }
  
  input[type="text"],
  input[type="email"],
  textarea {
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
  }
  
  input[type="radio"],
  input[type="checkbox"] {
    margin-right: 10px;
  }
  
  textarea {
    resize: vertical;
    height: 100px;
  }
  
  button {
    margin-top: 20px;
    padding: 10px;
    background-color: hsl(169, 82%, 27%);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #45a049;
  }
  
  .query-type-container {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
  }
  
  .query-type {
    display: flex;
    flex-direction: ;
    align-items: center;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 4px;
    margin-top: 10px;
    width: 48%;
    box-sizing: border-box;
    cursor: pointer;
  }
  
  .query-type input {
    margin-right: 5px;
  }
  
  .error {
    color: red;
    font-size: 12px;
    display: none;
  }