body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background: #fff;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header / Logo */
.white-header {
  background: white;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.white-header a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.white-header img,
.logo {
  width: 80%;
  max-width: 900px;
  height: auto;
  max-height: 98%;
  display: block;
}

/* Hero */
.hero {
  background: linear-gradient(to bottom, #e0f0ff, #ffffff);
  padding: 60px 20px;
  text-align: center;
}

.hero h1 {
  color: #0056b3;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero-subtext {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.hero-flex,
.services-flex {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.hero-image,
.services-image {
  flex: 1 1 40%;
  max-width: 400px;
}

.hero-image img,
.services-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  border-radius: 8px;
  margin: 0 auto;
}

.hero-text,
.services-text {
  flex: 1 1 55%;
  text-align: left;
}

/* Buttons */
a.btn-primary,
a.btn-primary:link,
a.btn-primary:visited,
a.btn-primary:hover,
a.btn-primary:active,
a.btn-primary:focus {
  text-decoration: none !important;
}

.btn-primary {
  background: #FF6F00;
  color: white;
  padding: 12px 28px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}

.badge {
  margin-top: 20px;
  font-weight: bold;
}

/* Services */
.services {
  background: #f9f9f9;
  padding: 20px 0;
  text-align: center;
}

.services h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #003366;
}

.services ul {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: auto;
}

.services li {
  margin: 10px 0;
  font-size: 1.1rem;
  line-height: 1.5;
}

.service-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.service {
  flex: 1 1 300px;
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.service img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
}

.service h3 {
  color: #003366;
  margin-top: 15px;
}

/* About */
.about {
  background: #e8f1fc;
  padding: 30px 20px;
  text-align: center;
}

.about h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #003366;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1000px;
  margin: auto;
  text-align: left;
}

.about-text,
.about-img {
  flex: 1 1 400px;
  min-width: 0;
}

.about-text p:first-child {
  margin-top: 0;
}

.about-img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Testimonials */
.testimonials {
  background: #ffffff;
  padding: 20px 0;
  text-align: center;
}

.testimonials h2 {
  color: #003366;
}

.testimonials blockquote {
  font-style: italic;
  color: #444;
  margin: 20px auto;
  max-width: 700px;
  font-size: 1.1rem;
}

/* CTA */
.cta {
  background: #003366;
  color: white;
  padding: 20px 0;
  text-align: center;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.cta .btn {
  display: inline-block;
  background: orange;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

/* Footer */
footer {
  background-color: #003366;
  color: white;
  padding: 20px;
  text-align: center;
}

footer p {
  margin: 6px 0;
}

footer p:first-child {
  margin-top: 0;
}

/* Services Page Feature Sections */
.service-feature {
  background: #ffffff;
  padding: 45px 20px;
}

.service-feature.alt {
  background: #f9f9f9;
}

.service-feature-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
}

.service-feature-text {
  flex: 1 1 55%;
  text-align: left;
}

.service-feature-text h2 {
  color: #003366;
  font-size: 2rem;
  margin-bottom: 15px;
}

.service-feature-text p {
  font-size: 1.1rem;
  margin-bottom: 0;
}

.service-feature-image {
  flex: 1 1 40%;
  max-width: 400px;
}

.service-feature-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  border-radius: 8px;
  margin: 0 auto;
}

/* Mobile */
@media screen and (max-width: 768px) {

  .container {
    width: 94%;
    max-width: 94%;
  }

  .white-header {
    height: auto;
    padding: 20px 0;
  }

  .white-header img,
  .logo {
    width: 95%;
    max-width: 900px;
    max-height: none;
  }

  .hero {
    padding: 35px 15px;
  }

  .hero-flex,
  .services-flex,
  .service-box,
  .service-feature-flex {
    flex-direction: column;
    text-align: center;
  }

  .hero-text,
  .services-text,
  .service-feature-text {
    text-align: center;
  }

  .hero-image,
  .services-image,
  .service,
  .service-feature-image {
    width: 100%;
    max-width: 100%;
  }

  .hero-image img,
  .services-image img,
  .service-feature-image img {
    width: 100%;
    max-width: 400px;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-subtext {
    font-size: 1rem;
  }

  .services h2,
  .about h2 {
    font-size: 1.8rem;
  }

  .services ul {
    text-align: left;
    padding: 0 10px;
  }

  .services li {
    font-size: 1rem;
  }

  .about {
    padding: 30px 18px;
  }

  .about-content {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    text-align: left;
  }

  .about-text {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
    text-align: left;
  }

  .about-text p {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    overflow-wrap: break-word;
  }

  .about-img {
    width: 100%;
    max-width: 400px;
    margin: 25px auto 0 auto;
  }

  .testimonials blockquote {
    font-size: 1rem;
    padding: 0 12px;
  }

  .btn-primary,
  .cta .btn {
    width: 100%;
    max-width: 320px;
  }

  .hero-buttons,
  .cta-buttons,
  .button-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .hero-buttons .btn,
  .cta-buttons .btn,
  .button-group .btn {
    width: 100%;
    max-width: 320px;
    margin: 0 !important;
  }

  .badge {
    font-size: 0.95rem;
  }

  .service-feature {
    padding: 35px 18px;
  }

  .service-feature-text h2 {
    font-size: 1.55rem;
  }

  .service-feature-text p {
    font-size: 1rem;
  }
}

@media screen and (max-width: 480px) {

  .hero h1 {
    font-size: 1.7rem;
  }

  .services h2,
  .about h2,
  .cta h2 {
    font-size: 1.6rem;
  }

  p,
  li {
    font-size: 0.95rem;
  }
}
/* Force mobile hero buttons to separate */
@media screen and (max-width: 768px) {

  .hero a.btn,
  .hero .btn,
  .hero .btn-primary,
  .hero .btn-secondary {
    display: block !important;
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 auto 16px auto !important;
    text-align: center !important;
  }

  .hero a.btn:last-child,
  .hero .btn:last-child,
  .hero .btn-primary:last-child,
  .hero .btn-secondary:last-child {
    margin-bottom: 0 !important;
  }
}

/* Workflow Review Form */
.review-form-section {
  background: #ffffff;
  padding: 45px 20px;
}

.review-form {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.form-row {
  margin-bottom: 20px;
}

.form-row label {
  display: block;
  font-weight: 600;
  color: #003366;
  margin-bottom: 6px;
}

.form-row .hint {
  display: block;
  font-weight: 400;
  color: #666;
  font-size: 0.9rem;
  margin-top: 4px;
}

.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 10px 12px;
  font-size: 1rem;
  font-family: inherit;
  border: 1px solid #ccc;
  border-radius: 5px;
  background: #fff;
}

.form-row textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row-radios {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-row-radios label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 400;
  color: #333;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.consent-row input {
  margin-top: 4px;
}

.consent-row label {
  font-weight: 400;
  color: #333;
  font-size: 0.95rem;
}

/* Honeypot field: hidden from sighted users, still reachable by bots */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin-bottom: 20px;
  padding: 12px 16px;
  border-radius: 5px;
  font-weight: 600;
  display: none;
}

.form-status.success {
  display: block;
  background: #e6f4ea;
  color: #1e7e34;
  border: 1px solid #b6e3c1;
}

.form-status.error {
  display: block;
  background: #fdecea;
  color: #a12622;
  border: 1px solid #f3c2bf;
}

@media screen and (max-width: 600px) {
  .review-form-section {
    padding: 30px 16px;
  }
}