section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    min-height: 60vh;
    box-sizing: border-box;
  }

  #form-description {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 15px;
  }
  
  form {
    background-color: #ffffff;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
  }
  
  input[type="text"],
  input[type="email"],
  textarea {
    font-size: 16px;
    padding: 14px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
    resize: vertical;
    font-family: inherit;
    box-sizing: border-box;
  }
  
  textarea {
    min-height: 150px;
  }
  
  button[type="submit"] {
    padding: 14px;
    font-size: 16px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  button[type="submit"]:hover {
    background-color: #555;
  }
  
  .hidden {
    display: none;
  }
  
  @media (max-width: 640px) {
    form {
      padding: 25px;
    }
  }
  