/* Form Wrapper Styled Like Info Sections */
.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  }
  
  /* Form Elements */
  .news-form label {
    display: block;
    font-weight: bold;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
  }
  
  .news-form input[type="text"],
  .news-form input[type="email"],
  .news-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #f9f9f9;
    font-size: 1rem;
  }
  
  .news-form textarea {
    resize: vertical;
    min-height: 150px;
  }
  
  .news-form button {
    margin-top: 2rem;
    background: #A8C5A0;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .news-form button:hover {
    background: #93B893;
  }
  
  .news-form .note {
    font-size: 0.9rem;
    color: #777;
    margin-top: 1rem;
  }
  