<style>
  body {
    font-family: Arial, sans-serif;
    background-color: #FFFFFF;
    color: #333;
    max-width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
  }
  h1 {
    color: #000;
    text-align: center;
    margin-bottom: 30px;
  }
  .form-section {
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
  }
  form {
    display: flex;
    flex-direction: column;
  }
  .form-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  .form-row > input,
  .form-row > select {
    flex: 1;
    min-width: 48%;
  }
  form input,
  form select {
    width: 100%;
    padding: 6px 14px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 16px;
    box-sizing: border-box;
  }
  form input[type="submit"] {
    background-color: #C4D600;
    color: #000;
    padding: 12px;
    cursor: pointer;
    border: none;
  }
  form input[type="submit"]:hover {
    background-color: #b2c200;
  }
  .g-recaptcha {
    margin-top: 20px;
    display: flex;
    justify-content: center;
  }
  .alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
  }
  .alert-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
  }
  .alert-error {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
  }
  
  /* UTM Debug Section */
  .utm-debug {
    background-color: #f8f9fa;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-size: 12px;
    border: 1px solid #dee2e6;
  }

  /* Company Address with Google Places styling */
  .address-with-autocomplete {
    position: relative;
  }
  
  .address-with-autocomplete input {
    background-image: url('data:image/svg+xml;charset=UTF-8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23666"%3E%3Cpath d="M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z"/%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 20px 20px;
    padding-right: 40px;
  }
 
  /* Required Label */
  .required-label::after {
    content: " *";
    color: red;
  }

  /* Radio Button Group - FIXED FOR TWO COLUMNS */
  .internet-speed-group {
    margin-bottom: 10px;
    margin-top: 10px; /* Adjusted spacing */
  }
  .internet-speed-group .radio-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Creates two equal-width columns */
    gap: 10px; /* Adds space between the grid cells */
  }
  .internet-speed-group .radio-options label {
    display: flex;
    align-items: center;
    gap: 0.5em; /* Space between the radio button and text */
    cursor: pointer;
  }
  /* Ensure the radio input itself does not have a width of 100% */
  .internet-speed-group input[type="radio"] {
    width: auto;
    margin: 0;
  }
  /* Checkbox Styling */
  .checkbox-group {
    margin-top: 10px;
    margin-bottom: 10px; /* Adjusted spacing */
  }
  .checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5em; /* Adds a small space between the checkbox and the text */
    cursor: pointer;
  }
  .checkbox-label input[type="checkbox"] {
    /* This ensures the checkbox doesn't inherit full width from the form's input rules */
    width: auto;
    margin: 0;
  }
</style>