    
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px) saturate(70%);
  z-index: -1;
}

/* Routable Form Styles - Updated */

:root {
  --primary-bg: rgba(255, 255, 255, 0.85);
  --primary-text: #2f2f2f;
  --accent: #4b6043;
  --accent-hover: #3a4d35;
  --error: red;
  --success: green;
  --helper-text: #666;
  --overlay-bg: rgba(255, 255, 255, 0.96);
  --form-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  --text-color: #1f1f1f;
  --heading-color: #111;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: url('https://i.imgur.com/5FLv0aw.jpg') no-repeat center center fixed;
  background-size: cover;
  color: var(--primary-text);
  overflow-x: hidden;
}

.overlay {
  background-color: var(--overlay-bg);
  backdrop-filter: blur(10px);
  max-width: 650px;
  margin: 50px auto;
  padding: 40px;
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.12),
    0 8px 24px rgba(0, 0, 0, 0.18);
  border-radius: 24px;
  color: var(--text-color);
}

h1, h2 {
  font-size: 1.4em;
  margin: 0 auto 1em auto;
  font-style: italic;
  text-align: center;
}

h1 {
  font-family: 'Poppins', sans-serif;
  font-style: italic;
  font-size: 2.6em;
  font-weight: 600;
  color: var(--heading-color);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  text-align: center;
  margin: 0 auto 0.2em auto;
}

h1::after {
  content: " →";
  color: var(--accent);
  font-weight: 400;
  opacity: 0.8;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
h1:hover::after {
  transform: translateX(4px);
  opacity: 1;
}
h1:hover::after {
  transform: translateX(4px);
}

h2 {
  font-size: 1.4em;
  margin: 0 auto 1em auto;
  font-style: italic;
  text-align: center;
}

form {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

label {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

.input-group label,
.checkbox-group label,
.radio-group label {
  font-weight: normal;
  margin-bottom: 6px;
}

input,
select,
textarea,
button {
  font-family: inherit;
  font-size: 1em;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}

input[type="checkbox"],
input[type="radio"] {
  width: auto;
  margin-right: 8px;
}

.inline-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
}

button {
  background-color: var(--accent);
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1em;
  align-self: center;
}

button:hover {
  background-color: var(--accent-hover);
}

.message {
  margin-top: 10px;
  font-weight: bold;
  text-align: center;
}

.suggestion-box {
  background: white;
  border: 1px solid #ccc;
  position: absolute;
  z-index: 1000;
  max-height: 200px;
  overflow-y: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  max-width: 100%;
  box-sizing: border-box;
}

.suggestion-item {
  padding: 12px;
  cursor: pointer;
}

.suggestion-item:hover {
  background-color: #f0f0f0;
}

.time-range-row,
.name-email-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.checkbox-group,
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.urgency-options label {
  font-weight: normal;
  line-height: 1.4;
  margin-bottom: 6px;
}

textarea {
  resize: vertical;
  min-height: 80px;
}

textarea#accessibility-other-text {
  margin-top: 8px;
}

@media (max-width: 600px) {
  h1 {
  font-family: 'Poppins', sans-serif;
  font-style: italic;
  font-size: 2.6em;
  font-weight: 600;
  color: var(--heading-color);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  text-align: center;
  margin: 0 auto 0.2em auto;
}

  h2 {
  font-size: 1.4em;
  margin: 0 auto 1em auto;
  font-style: italic;
  text-align: center;
}
  
  .logo-image {
    width: 48px;
    margin-bottom: 8px;
  }
  
  p {
    font-size: 0.95em;
    line-height: 1.4;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }

  label {
    font-size: 0.95em;
  }

  input,
  select,
  textarea {
    padding: 10px 12px;
    font-size: 0.95em;
    width: 100%;
    box-sizing: border-box;
  }

  button {
    padding: 10px 20px;
    font-size: 1em;
  }

  .overlay {
    padding: 20px;
    margin: 16px auto;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
    border-radius: 18px;
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
  }

  .time-range-row,
  .name-email-row {
    flex-direction: column;
    gap: 12px;
  }

  .checkbox-group,
  .radio-group {
    gap: 8px;
  }

  textarea {
    min-height: 60px;
  }

  .suggestion-box {
    max-width: 100%;
    box-sizing: border-box;
  }
}
input, select, textarea {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

input:focus, textarea:focus, select:focus {
  box-shadow: 0 0 6px rgba(160, 208, 128, 0.5);
  border-color: #a0d080;
}

/* Upgrade Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #fff;
  color: #222;
  padding: 24px;
  border-radius: 12px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.modal-actions {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-upgrade {
  background-color: var(--accent);
  color: white;
  border: none;
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-upgrade:hover {
  background-color: var(--accent-hover);
}

.btn-close {
  background: #ddd;
  border: none;
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
}
    
