/* Base Layout */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f4f4f4;
  color: #333;
}

header, section, footer {
  padding: 2rem;
  max-width: 960px;
  margin: auto;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.75rem;
}

h3 {
  font-size: 1.25rem;
  margin-top: 0;
}

/* Header Styling */
header {
  background: #ff6600;
  color: white;
  text-align: center;
}

header p {
  font-size: 1.1rem;
}

.phone-link {
  color: white;
  font-weight: bold;
  text-decoration: none;
}

.phone-sec {
  color: black;
  font-weight: bold;
  text-decoration: none;
}

/* CTA Buttons */
.cta-btn {
  background: white;
  color: #ff6600;
  padding: 1rem 2rem;
  border: none;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  margin-top: 1rem;
  text-decoration: none;
  display: inline-block;
  border-radius: 5px;
}

/* Steps Section */
.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.steps h2 {
  width: 100%;
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1.75rem;
  color: #333;
}

.step {
  background: white;
  padding: 1rem;
  border-radius: 8px;
  flex: 1 1 30%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  min-width: 250px;
}

/* Pricing Section */
.pricing {
  background: white;
  text-align: center;
  padding: 2rem;
  margin-top: 2rem;
  border-radius: 8px;
}

.price-highlight {
  font-size: 1.2rem;
  font-weight: bold;
}

.pricing ul {
  list-style: none;
  padding: 0;
}

/* Industry Examples */
.examples a {
  display: inline-block;
  margin: 0.5rem 1rem 0 0;
  text-decoration: none;
  color: #ff6600;
  font-weight: bold;
}

.examples p {
  margin: 0.25rem 0 1.5rem;
  font-size: 0.95rem;
}

/* Testimonials */
.testimonials {
  background: #fff;
  margin-top: 2rem;
  border-radius: 8px;
  padding: 2rem;
}

.testimonials blockquote {
  margin-bottom: 1.5rem;
  font-style: italic;
}

/* Footer */
footer {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  margin-top: 3rem;
}

/* Form Page */
.container {
  max-width: 600px;
  margin: 2rem auto;
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

form label {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
}

form input,
form textarea,
form select {
  width: 100%;
  padding: 0.75rem;
  margin-top: 0.25rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  box-sizing: border-box;
}

form button {
  background: #ff6600;
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: 5px;
  margin-top: 1.5rem;
  cursor: pointer;
}

form button:hover {
  background: #e05400;
}

/* Sticky Buttons (Mobile Only) */
.sticky-buttons {
  display: none;
}

@media (max-width: 768px) {
  .sticky-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
  }

  .sticky-btn {
    text-decoration: none;
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.95rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    text-align: center;
    min-width: 160px;
  }

  .call-btn {
    background: green;
  }

  .quote-btn {
    background: #ff6600;
  }
}