  .contact-form {
    max-width: 600px;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .contact-form input,
  .contact-form textarea {
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
  }
  .contact-form button {
    padding: 0.8rem;
    font-size: 1.1rem;
    background-color: #2f80ed;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
  }
  #success-msg {
    display: none;
    color: green;
    font-weight: bold;
    margin-top: 1rem;
    text-align: center;
  }
