/* Base styles */
body {
    font-family: "Lucida Grande", "Lucida Sans Unicode", Tahoma, sans-serif;
    background-color: #ffffff;
    padding: none;
    text-align: left;
  }
  
  /* Headings */
  form h1, form h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #222;
  }

  ul {
    list-style-type: none;
    margin-left: 0;
    padding-left: 0;
  }

  /* Labels */
  label.desc {
    display: block;
    font-weight: bold;
    margin-bottom: 6px;
    font-size: 14px;
  }

  /* Inputs and textareas */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea,
  select {
    padding: 10px 12px;
    margin-bottom: 20px;
    border: 1px solid #bbb;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
    width: 100%;
  }
  
  input:focus,
  textarea:focus,
  select:focus {
    border-color: #5b9dd9;
    outline: none;
  }
  
  /* Submit button */
  input[type="submit"],
  button[type="submit"] {
    background-color: #5b9dd9;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  input[type="submit"]:hover,
  button[type="submit"]:hover {
    background-color: #3b7dc4;
  }
  
  /* Optional: field grouping */
  fieldset {
    border: none;
    margin-bottom: 20px;
    padding: 0;
  }
  