body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    background-color: #f8f9fa;
    color: #333;
  }
  
  .connect-form-section {
    padding: 1rem 1rem;
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
  }
  
  .form-container h1 {
    text-align: center;
    color: #800000;
    margin-bottom: 2rem;
  }
  
  form {
    display: flex;
    flex-direction: column;
  }
  
  label {
    font-weight: bold;
    margin: 1rem 0 0.5rem;
  }
  
  input[type="text"],
  input[type="email"],
  input[type="tel"] {
    padding: 0.75rem;
    border: 1px solid #ccc;
    background-color: #eee;
    border-radius: 4px;
    font-size: 1rem;
    width: 100%;
  }
  
  .section-label {
    margin-top: 1rem;
    font-weight: bold;
  }
  
  .checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0rem;
    margin-top: 0rem;
  }
  
  .checkbox-group label {
    font-weight: normal;
    display: flex;
    align-items: center;
    margin-bottom: 0rem; /* Reduce this to bring them closer */
    gap: 0rem;
    font-size: 1rem;
    color: #333;
  }
  
  button[type="submit"] {
    margin-top: 2rem;
    background-color: #800000;
    color: white;
    border: none;
    padding: 0.6rem 1.25rem;
    border-radius: 4px;
    font-weight: bold;
    font-size: 1rem;
    width: auto;
    align-self: flex-start;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  button[type="submit"]:hover {
    background-color: #a10000;
  }
  
  @media (max-width: 600px) {
    .connect-form-section {
      padding: 2rem 1rem;
    }
  
    button[type="submit"] {
      width: 100%;
      align-self: stretch;
    }
  }

  .connect-hero {
    background-color: #f7f9fa;
    padding: 0rem 1rem;
    text-align: center;
    border-bottom: 1px solid #ddd;
  }
  
  .connect-hero .hero-content {
    max-width: 700px;
    margin: 0 auto;
  }
  
  .connect-hero h1 {
    font-size: 2.75rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
  }
  
  .connect-hero p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
  }
  