.contact-form {
    max-width: 600px;
    margin: 2em auto;
    padding: 2em;
    background: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 8px;
  }
  
  .contact-form label {
    display: block;
    margin-bottom: 0.5em;
    font-weight: bold;
  }
  
  .contact-form input[type="text"],
  .contact-form input[type="email"],
  .contact-form select,
  .contact-form textarea {
    width: 100%;
    padding: 0.6em;
    margin-bottom: 1.5em;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1em;
  }
  
  .contact-form textarea {
    resize: vertical;
  }
  
  .submit-btn {
    background-color: #007bff;
    color: white;
    padding: 0.7em 1.5em;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    cursor: pointer;
  }
  
  .submit-btn:hover {
    background-color: #0056b3;
  }
  