/* Global Styles */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    background-color: #f9f9f9;
  }
  
  h2 {
    text-align: center;
    margin-bottom: 20px;
  }
  
  /* Form Styles */
  
  #whatsappForm {
    max-width: 400px;
    margin: 40px auto;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  label {
    display: block;
    margin-bottom: 10px;
  }
  
  input[type="text"], textarea {
    width: 100%;
    height: 40px;
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  textarea {
    height: 100px;
    resize: vertical;
  }
  
  button[type="button"] {
    width: 100%;
    height: 40px;
    background-color: #4CAF50;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  button[type="button"]:hover {
    background-color: #3e8e41;
  }
  
  /* Link Styles */
  
  #whatsappLink {
    display: block;
    margin-top: 20px;
    text-align: center;
  }
  
  #whatsappLink:hover {
    text-decoration: none;
  }
  
  /* Responsive Styles */
  
  @media (max-width: 768px) {
    #whatsappForm {
      margin: 20px auto;
    }
  }
  
  @media (max-width: 480px) {
    #whatsappForm {
      margin: 10px auto;
    }
    input[type="text"], textarea {
      height: 30px;
    }
    button[type="button"] {
      height: 30px;
    }
  }