body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9f9f9;
  margin: 0;
  padding: 0;
  color: #333;
}

.container {
  max-width: 900px;
  margin: auto;
  padding: 20px;
  background: white;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Logo header */
.logo-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.logo-img {
  height: 40px;
  margin-right: 10px;
}

.logo-text {
  font-size: 1em;
  font-weight: bold;
  color: #2c3e50;
}

/* Navigation bar links */
.nav-links {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1em;
}

.nav-links a {
  color: #0070ba;
  text-decoration: none;
  margin: 0 10px;
  font-weight: bold;
}

.nav-links a:hover {
  text-decoration: underline;
}

header h1 {
  font-size: 2.5em;
  margin-bottom: 0;
}

.tagline {
  font-size: 1.2em;
  color: #555;
  margin-top: 5px;
}

.video {
  margin: 20px 0;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.description, .features, .onboarding {
  margin: 30px 0;
}

/* Features section */
.features .feature-heading {
  font-size: 1.2em;   /* same size as tagline text */
  font-weight: bold;
  color: #2c3e50;
  margin: 18px 0 10px 0; /* space above/below heading only */
}

.features ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;   /* spacing between sections */
}

.features li {
  margin: 5px 0;        /* single spacing between lines */
  font-size: 1.1em;
}

/* General button styling */
button {
  color: white;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  margin-right: 10px;
  margin-bottom: 20px;
  border-radius: 5px;
  font-weight: bold;
}

button:hover {
  opacity: 0.9;
}

/* Specific button colors */
.order-btn {
  background-color: #28a745; /* green for order */
}

.info-btn {
  background-color: #0070ba; /* blue for contact us */
}

/* Layout for buttons side by side */
.button-row {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.demo {
  font-size: 1.1em;
  margin-top: 20px;
}

.phone-link {
  color: #0070ba;
  text-decoration: none;
  font-weight: bold;
}

.onboarding h2 {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #2c3e50;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

/* Side-by-side layout for short fields */
.form-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}

.form-row label {
  flex: 0 0 150px;   /* fixed width for labels */
  font-weight: bold;
  margin-right: 10px;
}

.form-row input {
  flex: 1;
  padding: 10px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* Special Instructions stacked layout */
.special-row {
  display: block;
}

.special-row label {
  display: block;
  font-weight: bold;
  margin-bottom: 6px;
}

.special-row textarea {
  width: 100%;
  min-height: 140px;
  resize: vertical;
  padding: 10px;
  font-size: 1em; /* default for mobile */
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* Larger font size for laptops/desktops */
@media (min-width: 768px) {
  .special-row textarea {
    font-size: 1.2em;
  }
}

/* Checkbox paragraphs */
.checkbox-paragraph {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.checkbox-paragraph input[type="checkbox"] {
  margin-right: 10px;
  margin-top: 4px;
}

.checkbox-paragraph label {
  flex: 1;
  font-size: 0.95em;
  line-height: 1.4em;
  color: #444;
  text-align: left;
}

/* Shared status message styling (error + confirmation) */
.status-message {
  color: #a94442 !important;   /* strong red for errors */
  font-weight: bold !important;
  font-size: 1.4em !important; /* larger text */
  margin-top: 10px;
  margin-bottom: 15px;
  text-align: left;
}

/* Validation library injected errors */
label.error {
  color: #a94442 !important;
  font-weight: bold !important;
  font-size: 1.2em !important;
  margin-top: 8px;
  display: block;
  text-align: left;
}

/* Confirmation message styling */
.confirmation-message {
  background-color: #f0f8ff;
  border: 1px solid #0070ba;
  padding: 15px;
  border-radius: 5px;
  margin-top: 15px;
}

/* About Us section */
.about-us {
  margin-top: 25px;
  font-size: 1em;
  color: #333;
  line-height: 1.5em;
}

.note {
  font-size: 1em;
  color: #555;
}

/* Footer legal links */
.legal-links {
  margin-top: 20px;
  font-size: 0.9em;
  text-align: center;
}

.legal-links a {
  color: #0070ba;
  text-decoration: none;
  margin: 0 8px;
}

.legal-links a:hover {
  text-decoration: underline;
}
