/* Feedback carousel styles */
.feedback-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2em;
  margin: 3em auto 0;
  max-width: 800px;
  position: relative;
}

.carousel-arrow {
  font-size: 2.5em;
  color: #2e6f40;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
  user-select: none;
  padding: 0.2em;
  border-radius: 50%;
  background: rgba(46, 111, 64, 0.1);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-arrow:hover {
  color: #86a2ff;
  transform: scale(1.1);
  background: rgba(134, 162, 255, 0.2);
}

.feedback-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 400px;
  max-width: 500px;
}

.feedback-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.feedback-media {
  width: 100%;
  margin-bottom: 1.5em;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(46, 111, 64, 0.15);
}

#feedback-text {
  font-size: 1.3em;
  color: #2e6f40;
  background: #f6edd9;
  border-left: 4px solid #2e6f40;
  padding: 1em 2em;
  border-radius: 8px;
  margin-bottom: 0.7em;
  box-shadow: 0 2px 8px rgba(46, 111, 64, 0.07);
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.feedback-author {
  font-size: 1.1em;
  color: #2e6f40;
  opacity: 0.8;
  margin-bottom: 1em;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5em;
  margin-top: 1em;
}

.dot {
  height: 12px;
  width: 12px;
  background-color: rgba(46, 111, 64, 0.3);
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.dot.active,
.dot:hover {
  background-color: #2e6f40;
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .feedback-carousel {
    flex-direction: column;
    gap: 1.5em;
    align-items: center;
  }

  .feedback-container {
    min-width: 280px;
    max-width: 350px;
  }

  .carousel-arrow {
    font-size: 2em;
    width: 40px;
    height: 40px;
  }

  #feedback-text {
    font-size: 1.1em;
    padding: 1em 1em;
  }

  .feedback-media {
    margin-bottom: 1em;
  }
}
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background-color: #f6edd9;
  color: #2e6f40;
}

header {
  background-color: #2e6f40;
  padding: 1em 2em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* border-bottom: 1px solid #a1e5ae; */
}

header > div {
  color: #f6edd9;
  font-size: 1.1em;
  font-weight: bold;
}

header nav {
  display: flex;
  align-items: center;
}

header nav a {
  margin-left: 2em;
  text-decoration: none;
  color: #f6edd9 !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

header nav a:hover {
  color: #86a2ff !important;
}

/* General link styling */
a {
  color: #2e6f40;
  text-decoration: underline;
  transition: color 0.3s ease;
}

a:hover {
  color: #86a2ff;
}

a:visited {
  color: #2e6f40;
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #f6edd9;
  background-color: #000000;
  overflow: hidden;
}

.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 2em;
}

.hero-content h1 {
  font-size: 3em;
}

/* Enhanced typography for better readability */
p {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 1.5em;
  font-weight: 400;
}
.kit {
  width: 300px;
}
/* Hero section subtext styling */
.hero-content p {
  font-size: 1.4em;
  line-height: 1.5;
  margin-top: 1em;
  margin-bottom: 2em;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section {
  padding: 4em 2em;
  max-width: 1000px;
  margin: 0 auto;
}

.section h2 {
  font-size: 2.5em;
  margin-bottom: 0.5em;
  text-align: center;
}

.section h3 {
  font-size: 1.6em;
  margin-bottom: 1.5em;
  text-align: center;
  font-weight: 600;
  opacity: 0.9;
  line-height: 1.4;
}

/* Problem and solution section subtitles */
.problem-content h3,
.solution-steps h3 {
  font-size: 1.8em;
  line-height: 1.3;
  margin-bottom: 1em;
  font-weight: 600;
  text-align: left;
}

.section h3 {
  font-size: 1.6em;
  margin-bottom: 1.5em;
  text-align: center;
  font-weight: 600;
  opacity: 0.9;
  line-height: 1.4;
}

.full-height {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 4em 2em;
  max-width: 1200px;
  margin: 0 auto;
}

.full-height#problem {
  background: #2e6f40;
  color: #f6edd9;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 0;
  text-align: left;
  padding: 0;
  max-width: 100%;
  min-height: 100vh;
}

.problem-content {
  padding: 4em;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.problem-visual {
  position: relative;
  background: #86a2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 100vh;
}

.problem-visual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23f6edd9" opacity="0.2"/><circle cx="80" cy="40" r="1.5" fill="%23f6edd9" opacity="0.2"/><circle cx="40" cy="70" r="1" fill="%23f6edd9" opacity="0.2"/><circle cx="70" cy="80" r="2.5" fill="%23f6edd9" opacity="0.2"/></svg>');
  animation: float 20s infinite linear;
}

.problem-icon {
  font-size: 8em;
  color: #f6edd9;
  opacity: 0.9;
  z-index: 1;
  position: relative;
  animation: pulse 2s infinite;
}

.full-height#solution {
  background: #2e6f40;
  color: #f6edd9;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 0;
  text-align: left;
  padding: 0;
  max-width: 100%;
  min-height: 100vh;
}

.solution-highlight {
  position: relative;
  background: #a1e5ae;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #2e6f40;
  /* padding: 4em; */
  overflow: hidden;
  min-height: 100vh;
}

.solution-highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%232e6f40" opacity="0.2"/><circle cx="80" cy="40" r="1.5" fill="%232e6f40" opacity="0.2"/><circle cx="40" cy="70" r="1" fill="%232e6f40" opacity="0.2"/><circle cx="70" cy="80" r="2.5" fill="%232e6f40" opacity="0.2"/></svg>');
  animation: float 20s infinite linear;
}

.solution-steps {
  padding: 4em;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Problem and solution section descriptions */
.problem-content p,
.solution-steps p {
  font-size: 1.3em;
  line-height: 1.7;
  margin-top: 1.5em;
  font-weight: 400;
  opacity: 1;
}

.mini-step {
  display: flex;
  align-items: center;
  margin-bottom: 2em;
  padding: 1em;
  border-radius: 8px;
  background: #f6edd9;
  transition: transform 0.3s ease;
}

.mini-step:hover {
  transform: translateX(10px);
  background: #a1e5ae;
}

.mini-step-number {
  width: 40px;
  height: 40px;
  background: #a1e5ae;
  color: #2e6f40;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 1em;
  flex-shrink: 0;
}

.big-checkmark {
  font-size: 12em;
  color: #2e6f40;
  opacity: 0.9;
  z-index: 1;
  position: relative;
  animation: bounce 3s infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(-20px) rotate(360deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@media (max-width: 768px) {
  .full-height#problem {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 0;
    height: auto;
  }
  .problem-visual {
    min-height: 40vh;
    order: -1;
  }
  .problem-content {
    padding: 2em 1em;
    max-width: 100%;
    min-height: auto;
  }
  .problem-content p {
    margin-bottom: 2em;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }

  .full-height#solution {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 0;
    height: auto;
  }
  .solution-highlight {
    min-height: 40vh;
  }
  .solution-steps {
    padding: 2em 1em;
    max-width: 100%;
    min-height: auto;
  }
  .solution-steps p {
    margin-bottom: 2em;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }

  /* Mobile paragraph styling */
  p {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 1.5em;
  }

  .hero-content p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 1.5em;
  }

  .problem-content p,
  .solution-steps p {
    font-size: 1.25em;
    line-height: 1.8;
    margin-bottom: 2em;
    padding: 0 1em;
  }

  .problem-content,
  .solution-steps {
    padding: 3em 2em;
  }

  .step p {
    font-size: 1em;
    line-height: 1.7;
  }

  .card p {
    font-size: 0.95em;
    line-height: 1.6;
  }

  blockquote {
    font-size: 1.1em;
    line-height: 1.7;
    padding: 1em;
  }

  /* Mobile subtitle styling */
  .section h3 {
    font-size: 1.4em;
    line-height: 1.5;
  }

  .problem-content h3,
  .solution-steps h3 {
    font-size: 1.5em;
    line-height: 1.4;
  }

  body {
    overflow-x: hidden;
  }

  .section {
    padding: 2em 1em;
    min-height: auto;
    height: auto;
  }

  .full-height {
    height: auto !important;
    min-height: auto !important;
  }

  /* Ensure text doesn't overflow */
  p,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
}

/* Additional mobile responsive for very small screens */
@media (max-width: 480px) {
  .how-it-works-steps {
    max-width: 100% !important;
    padding: 0 0.5em !important;
    gap: 1em !important;
  }

  .step {
    padding: 1.5em 1em !important;
    font-size: 0.9em;
  }

  .step-number {
    font-size: 1.8em;
  }

  .process-arrow {
    font-size: 1.5em;
    margin: 0.3em 0;
  }

  /* Fix problem and solution sections overflow */
  .problem-content,
  .solution-steps {
    padding: 2em 1em !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    height: auto !important;
    min-height: auto !important;
  }

  .problem-content p,
  .solution-steps p {
    font-size: 1.1em !important;
    line-height: 1.7 !important;
    margin-bottom: 2em !important;
    padding: 0 0.5em !important;
    overflow-wrap: break-word !important;
    word-wrap: break-word !important;
    hyphens: auto !important;
  }

  .full-height#problem,
  .full-height#solution {
    padding: 0 !important;
    min-height: auto !important;
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .problem-visual,
  .solution-highlight {
    min-height: 30vh !important;
    height: auto !important;
  }
}

/* Tablet responsive design for how-it-works */
@media (max-width: 1024px) and (min-width: 769px) {
  .how-it-works-steps {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 1.5em;
    max-width: 900px;
  }

  .step {
    max-width: 250px;
    padding: 1.8em;
  }

  .process-arrow {
    font-size: 1.5em;
  }
}

/* Process arrow styling */
.process-arrow {
  font-size: 2em;
  color: #2e6f40;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta {
  background-color: #2e6f40;
  color: #ffffff;
  border: none;
  padding: 1em 2em;
  font-size: 1em;
  font-weight: bold;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta:hover {
  background-color: #86a2ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(46, 111, 64, 0.3);
}

.bcta {
  background-color: #86a2ff;
  color: #ffffff;
  border: none;
  padding: 1em 2em;
  font-size: 1em;
  font-weight: bold;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.bcta:hover {
  background-color: #a1e5ae;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(46, 111, 64, 0.3);
}

.hero .cta {
  background-color: #2e6f40;
  color: #ffffff;
  font-weight: bold;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2em;
}

@media (max-width: 768px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

.card {
  background: #ffffff;
  padding: 2em;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(46, 111, 64, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid #a1e5ae;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(46, 111, 64, 0.2);
  border-color: #86a2ff;
}

.card h3 {
  color: #2e6f40;
  font-size: 1.4em;
  margin-bottom: 1em;
  text-align: center;
  font-weight: bold;
}

.card img {
  width: 100% !important;
  height: 200px;
  object-fit: cover;
  border-radius: 12px !important;
  margin-bottom: 1.5em;
  transition: transform 0.3s ease;
}

.card:hover img {
  transform: scale(1.05);
}

/* Use case card descriptions */
.card p {
  font-size: 1em;
  line-height: 1.5;
  color: #2e6f40;
  margin-top: 1em;
  font-weight: 400;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1em;
  margin-bottom: 1.2em;
  border: 2px solid #2e6f40;
  border-radius: 8px;
  background-color: #ffffff;
  color: #2e6f40;
  font-family: "Inter", sans-serif;
  font-size: 1em;
  box-shadow: 0 2px 10px rgba(46, 111, 64, 0.1);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #86a2ff;
  box-shadow: 0 0 0 3px rgba(134, 162, 255, 0.2);
  background-color: #ffffff;
}

/* Universal input field sizing */
input,
textarea,
select {
  box-sizing: border-box;
  max-width: 100%;
}

footer {
  background-color: #2e6f40;
  color: #f6edd9;
  padding: 3em 2em 2em 2em;
  margin-top: 2em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  min-height: 80px;
}

footer nav {
  display: flex;
  gap: 3em;
  flex-wrap: wrap;
  align-items: center;
}

footer nav a {
  color: #f6edd9;
  text-decoration: none;
  font-weight: 400;
  margin-left: 0;
  transition: color 0.3s ease;
  font-size: 1em;
}

footer nav a:hover {
  color: #86a2ff;
}

footer p {
  margin: 0;
  color: #a1e5ae;
  font-size: 0.9em;
  white-space: nowrap;
}

footer > div {
  color: #f6edd9;
  font-size: 1.1em;
}

@media (max-width: 768px) {
  footer {
    flex-direction: column;
    text-align: center;
    gap: 1.5em;
  }
  footer nav {
    justify-content: center;
    gap: 2em;
  }

  /* How it works responsive design */
  .how-it-works-steps {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5em !important;
    max-width: 100% !important;
    margin: 2em auto !important;
    padding: 0 1em !important;
  }

  .process-arrow {
    align-self: center;
    transform: rotate(90deg);
    font-size: 2em;
    color: #2e6f40;
    margin: 0.5em 0;
    order: 0;
  }

  .step {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
  }
}

.solution-images {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 2em 0;
  gap: 1em;
}

.solution-images img {
  width: 23%;
  border-radius: 8px;
  object-fit: cover;
}

.how-it-works-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 2em;
  margin: 3em auto;
  max-width: 1200px;
  align-items: center;
  justify-items: center;
}
.step {
  background: #ffffff;
  padding: 2em;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(46, 111, 64, 0.12);
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid #a1e5ae;
  max-width: 300px;
  width: 100%;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(46, 111, 64, 0.18);
  border-color: #86a2ff;
}

.step-number {
  width: 60px;
  height: 60px;
  background: #2e6f40;
  color: #f6edd9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  margin: 0 auto 1.5em auto;
  box-shadow: 0 4px 15px rgba(46, 111, 64, 0.3);
}

.step h3 {
  color: #2e6f40;
  margin-bottom: 1em;
  font-size: 1.3em;
}

/* How it works step descriptions */
.step p {
  font-size: 1.1em;
  line-height: 1.6;
  color: #2e6f40;
  font-weight: 400;
  margin-top: 1em;
}

/* Step CTA button styling */
.step-cta {
  background: #2e6f40;
  color: #f6edd9;
  padding: 0.8em 1.5em;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1em;
  font-size: 0.9em;
  box-shadow: 0 4px 15px rgba(46, 111, 64, 0.3);
}

.step-cta:hover {
  background: #86a2ff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(134, 162, 255, 0.4);
}

.step-cta:active {
  transform: translateY(0);
}

/* Contact section styling */
.section:has(.contact-form) {
  background: #2e6f40;
  color: #f6edd9;
  padding: 4em 2em;
  margin: 2em auto;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(46, 111, 64, 0.3);
  max-width: 600px;
  text-align: center;
}

.section:has(.contact-form) h2 {
  color: #f6edd9;
  font-size: 2.5em;
  margin-bottom: 1.5em;
}

.contact-form {
  max-width: 400px;
  margin: 0 auto;
}

.contact-form .cta {
  background-color: #2e6f40;
  color: #ffffff;
  padding: 1em 2.5em;
  font-size: 1.1em;
  font-weight: bold;
  border-radius: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(46, 111, 64, 0.3);
  margin-top: 0.5em;
}

.contact-form .cta:hover {
  background-color: #86a2ff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 111, 64, 0.4);
}

/* Testimonial section styling */
.section:has(iframe) {
  text-align: center;
}

.section iframe {
  display: block;
  margin: 2em auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(46, 111, 64, 0.2);
}

/* How it works section styling */
.section#how-it-works {
  background: #a1e5ae;
  padding: 5em 2em;
  border-radius: 20px;
  margin: 2em auto;
  max-width: 1200px;
  text-align: center;
}

.section#how-it-works h2 {
  color: #2e6f40;
  font-size: 3em;
  margin-bottom: 1.5em;
}

/* Robot to site section styling */
.section:has(img[alt="Robot dog on site"]) {
  background: #f6edd9;
  color: #2e6f40;
  padding: 5em 2em;
  margin: 2em auto;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(46, 111, 64, 0.2);
  max-width: 1200px;
  text-align: center;
}

.section:has(img[alt="Robot dog on site"]) h2 {
  color: #2e6f40;
  font-size: 3em;
  margin-bottom: 1.5em;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

.section:has(img[alt="Robot dog on site"]) img {
  border-radius: 20px !important;
  box-shadow: 0 15px 50px rgba(46, 111, 64, 0.3);
  margin: 2em 0;
  max-width: 800px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section:has(img[alt="Robot dog on site"]) img:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(46, 111, 64, 0.4);
}

.section:has(img[alt="Robot dog on site"]) p {
  font-size: 1.3em;
  line-height: 1.6;
  color: #2e6f40;
  font-weight: 500;
  max-width: 800px;
  margin: 2em auto 0;
  background: rgba(161, 229, 174, 0.2);
  padding: 1.5em;
  border-radius: 15px;
  border: 1px solid #a1e5ae;
}

/* Use cases section styling */
.section#usecases {
  background: #a1e5ae;
  padding: 5em 2em;
  margin: 2em auto;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(46, 111, 64, 0.15);
  max-width: 1200px;
}

.section#usecases h2 {
  color: #2e6f40;
  font-size: 3em;
  margin-bottom: 2em;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

/* Kit Features Section Styling */
#kit-features {
  background: #f6edd9;
  padding: 5em 2em;
  margin: 2em auto;
  border-radius: 20px;
  max-width: 1200px;
  text-align: center;
}

#kit-features h2 {
  color: #2e6f40;
  font-size: 3em;
  margin-bottom: 0.5em;
}

#kit-features h3 {
  color: #2e6f40;
  font-size: 1.4em;
  margin-bottom: 3em;
  opacity: 0.8;
}

.kit-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4em;
  align-items: start;
  text-align: left;
}

.kit-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(46, 111, 64, 0.2);
  transition: transform 0.3s ease;
}

.kit-image img:hover {
  transform: scale(1.05);
}

.kit-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.specifications {
  background: #2e6f40;
  color: #f6edd9;
  padding: 2.5em;
  border-radius: 12px;
  max-width: 500px;
  width: 100%;
}

.specifications h4 {
  color: #a1e5ae;
  font-size: 1.3em;
  margin-bottom: 1.5em;
  font-weight: 600;
  text-align: center;
}

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

.specifications li {
  padding: 0.8em 0;
  border-bottom: 1px solid rgba(161, 229, 174, 0.2);
  font-size: 1em;
  line-height: 1.5;
}

.specifications li:last-child {
  border-bottom: none;
}

.specifications li::before {
  content: "▪";
  color: #a1e5ae;
  margin-right: 0.5em;
  font-size: 1.2em;
}

/* Responsive design for kit features */
@media (max-width: 768px) {
  .kit-container {
    grid-template-columns: 1fr;
    gap: 2em;
    text-align: center;
  }

  .specifications {
    padding: 2em;
    max-width: 100%;
  }

  #kit-features {
    padding: 3em 1.5em;
  }
}

@media (max-width: 480px) {
  #kit-features h2 {
    font-size: 2.2em;
  }

  #kit-features h3 {
    font-size: 1.2em;
  }
}

/* Pilot images styling */

.pilot-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2em;
  margin: 3em auto 0;
  max-width: 700px;
}
.carousel-btn {
  background: #2e6f40;
  color: #f6edd9;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.5em;
  cursor: pointer;
  transition: background 0.2s;
}
.carousel-btn:hover {
  background: #86a2ff;
}
.carousel-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 250px;
}
#carousel-img {
  width: 320px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(46, 111, 64, 0.15);
  margin-bottom: 1em;
}
.carousel-desc {
  background: #f6edd9;
  color: #2e6f40;
  padding: 1em 1.5em;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(46, 111, 64, 0.07);
  text-align: center;
  font-size: 1.1em;
  min-width: 220px;
}
@media (max-width: 768px) {
  .pilot-carousel {
    flex-direction: column;
    gap: 1.5em;
    align-items: center;
  }
  #carousel-img {
    width: 90vw;
    max-width: 320px;
    height: 160px;
  }
}

/* Responsive design for pilot images */
@media (max-width: 768px) {
  .pilot-images {
    flex-direction: column;
    gap: 1.5em;
    align-items: center;
  }

  .pilot-images img {
    width: 80%;
    height: 180px;
  }

  /* Contact form tablet optimization */
  .contact-form {
    max-width: 100%;
    padding: 1.5em;
    margin: 1em auto;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 1em;
    margin-bottom: 1.3em;
    font-size: 1em;
  }

  .section:has(.contact-form) {
    padding: 4em 1.5em;
  }
}

@media (max-width: 480px) {
  .pilot-images img {
    width: 90%;
    height: 160px;
  }

  /* Contact form mobile optimization */
  .contact-form {
    max-width: 100%;
    padding: 1em;
    margin: 1em auto;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 1em;
    margin-bottom: 1.2em;
    font-size: 0.95em;
    border-width: 1px;
  }

  .contact-form .cta {
    width: 100%;
    padding: 1.2em;
    font-size: 1em;
    margin-top: 0.8em;
  }

  .section:has(.contact-form) {
    padding: 3em 1em;
  }
}

/* Extra small mobile phones */
@media (max-width: 360px) {
  .contact-form {
    padding: 1em 0.5em;
    margin: 0.5em auto;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 0.9em;
    font-size: 0.9em;
    margin-bottom: 1em;
  }

  .contact-form .cta {
    padding: 1em;
    font-size: 0.95em;
  }

  .section:has(.contact-form) {
    padding: 2em 0.5em;
  }

  .section:has(.contact-form) h2 {
    font-size: 2em;
    margin-bottom: 1em;
  }

  /* Problem and solution sections for very small screens */
  .problem-content,
  .solution-steps {
    padding: 1.5em 0.8em !important;
  }

  .problem-content p,
  .solution-steps p {
    font-size: 1.05em !important;
    line-height: 1.6 !important;
    padding: 0 0.3em !important;
    margin-bottom: 1.8em !important;
  }
}

/* Hide empty navigation menus */
nav:empty {
  display: none;
}

/* Show navigation with content */
header nav {
  display: flex;
}

footer nav {
  display: flex;
}
