/* Hero Section */
.decision-hero {
    background: linear-gradient(to right, #800000cc, #4d0000cc),
                url('../images/hero-decision.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 1rem 1rem;
  }
  
  .decision-hero .hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
  }
  
  .decision-hero .hero-content p {
    font-size: 1.2rem;
    font-weight: 400;
  }
  
  /* Intro Text Section */
  .decision-intro {
    text-align: center;
    padding: 2rem 1rem;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .decision-intro h2 {
    font-size: 2rem;
    color: #800000;
    margin-bottom: 1rem;
  }
  
  .decision-intro p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
  }
  
  /* Form Overrides */
  .connect-form-section {
    background-color: #f9f9f9;
    padding: 1rem 1rem;
  }
  
  .connect-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 1rem 1rem 1rem 1rem;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  }
  
  .connect-container h2 {
    margin-top: 0;
    color: #800000;
    font-weight: 600;
  }
  
  label {
    display: block;
    margin-top: 1rem;
    font-weight: 600;
    color: #333;
  }
  
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea {
    width: 100%;
    padding: 0.75rem;
    margin-top: 0.25rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
  }
  
  textarea {
    resize: vertical;
  }
  
  .section-label {
    margin-top: 0rem;
    font-weight: 700;
    color: #800000;
  }
  
  .checkbox-group label {
    display: block;
    margin-top: 0.5rem;
    font-weight: 400;
  }
  
  button[type="submit"],
  .btn {
    margin-top: 2rem;
    background-color: #800000;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  button[type="submit"]:hover,
  .btn:hover {
    background-color: #a00000;
  }
  
  form select {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    background-color: #fff;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
  }
  
  form select:focus {
    border-color: #800000; /* Match your burgundy theme */
    outline: none;
    box-shadow: 0 0 0 2px rgba(128, 0, 0, 0.2);
  }
  
  input:invalid:required {
    border: 1px solid #a10000;
  }
  
  input:invalid:required::placeholder {
    color: #a10000;
  }
  
  input:invalid:required + .error-message {
    display: block;
  }

  .error-message {
    color: #a10000;
    font-size: 0.9rem;
    display: none;
    margin-top: 0.3rem;
  }
  