.feedback-page {
    max-width: 700px;
    margin: 3rem auto;
    padding: 2rem;
    font-family: 'Segoe UI', Tahoma, sans-serif;
    color: #1e1e1e;
  }
  
  .feedback-page h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #5096d3;
  }
  
  .instructions {
    text-align: center;
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 2rem;
  }
  
  .feedback-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .feedback-form label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
  }
  
  .feedback-form input,
  .feedback-form textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
  }
  
  .feedback-form input:focus,
  .feedback-form textarea:focus {
    outline: none;
    border-color: #5096d3;
    box-shadow: 0 0 5px rgba(80, 150, 211, 0.5);
  }
  
  .cta-button {
    background: #5096d3;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
  }
  
  .cta-button:hover {
    background: #2e78ba;
    transform: translateY(-2px);
  }
  
  @media (max-width: 768px) {
    .feedback-page {
      padding: 2rem 1rem;
    }
  }
  