/* Feedback Form */
.feedback-form {
    max-width: 720px;
    margin: 0 auto;
  }
  .feedback-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1a2634;
  }
  .feedback-form input,
  .feedback-form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    margin-bottom: 20px;
    font-family: 'Open Sans', sans-serif;
    font-size: clamp(0.9rem, 2vw, 1rem);
  }
  
  .feedback-form button {
    width: auto;
    padding: 12px 24px;
    font-size: clamp(0.9rem, 2vw, 1rem);
  } 