/* Reset + Base */
* {
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Georgia', serif;
    background-color: #fff;
    color: #000;
    margin: 0;
    padding: 2rem;
    line-height: 1.6;
  }
  
  .container {
    max-width: 700px;
    margin: 0 auto;
  }
  
  header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 0.25rem;
  }
  
  header .subtitle {
    font-size: 1.1rem;
    font-style: italic;
    color: #444;
    margin-bottom: 2rem;
  }
  
  /* Form */
  .feedback-form {
    display: flex;
    flex-direction: column;
  }
  
  .feedback-form label {
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .feedback-form input,
  .feedback-form textarea,
  .feedback-form select {
    padding: 0.75rem;
    border: 1px solid #000;
    background-color: #fff;
    color: #000;
    font-size: 1rem;
    width: 100%;
    border-radius: 4px;
    font-family: 'Georgia', serif;
  }
  
  .feedback-form textarea {
    resize: vertical;
  }
  
  .feedback-form button {
    margin-top: 2rem;
    padding: 0.75rem 1.5rem;
    background-color: #000;
    color: #fff;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.3s ease;
  }
  
  .feedback-form button:hover {
    background-color: #333;
  }
  