body {
  margin: 0;
  font-family: sans-serif;
  background: #fff;
  color: #333;
}

.hero {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.1) 30%, rgba(0, 0, 0, 0.8) 80%), url("/images/John.webp");
  background-size: cover;
  background-position: center;
  min-height: 40vh;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  color: white;
  padding: 20px 10%;
}

.hero-content {
  max-width: 600px;
  text-align: right;
}

.btn-call {
  background: #ffcc00;
  color: #002D62 !important;
  padding: 15px 25px;
  font-size: 1.4rem;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.quick-qa {
  background: #002D62;
  color: white;
  padding: 30px 10%;
  text-align: center;
}

.qa-grid {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.qa-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 20px;
  flex: 1;
  min-width: 220px;
  max-width: 320px;
}
.qa-card p {
  font-size: 1.1rem;
  margin: 0;
  font-weight: bold;
  line-height: 1.4;
}

.qa-btn {
  background: #ffcc00;
  color: #002D62;
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.cta-top {
  background: #f4f4f4;
  padding: 25px 10%;
  text-align: center;
  color: #002D62;
}

.trust-banner {
  background: #eee;
  padding: 20px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.trust-col {
  width: 250px;
  color: #002D62;
  font-weight: 900;
  font-size: 1.1rem;
  text-transform: uppercase;
  line-height: 1.2;
}

.trust-center {
  flex: 0 0 200px;
  text-align: center;
  color: #002D62;
}
.trust-center img {
  width: 120px;
  height: auto;
  display: block;
  margin: 0 auto 5px;
}

.comparison-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.comparison-item {
  flex: 1;
  max-width: 500px;
  text-align: center;
}
.comparison-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 4px solid #eee;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.comparison-item h3 {
  color: #002D62;
  text-transform: uppercase;
  margin: 10px 0 5px;
}
.comparison-item p {
  font-style: italic;
  color: #666;
  margin: 0;
}

@media (max-width: 768px) {
  .hero {
    display: block;
    min-height: auto;
    padding: 0;
    background: none;
  }
  .hero::before {
    content: "";
    display: block;
    width: 100%;
    height: 180px;
    background: url("/images/John.webp") no-repeat center;
    background-size: cover;
  }
  .hero-content {
    background: #002D62;
    color: white;
    padding: 20px;
    text-align: center;
  }
  .btn-call {
    width: 100%;
    box-sizing: border-box;
  }
  .trust-banner {
    flex-direction: column;
    gap: 25px;
    text-align: center;
    padding: 30px 20px;
  }
  .trust-col {
    width: 100%;
    text-align: center !important;
  }
  .comparison-container {
    flex-direction: column;
    align-items: center;
  }
  .cards-container {
    flex-wrap: wrap !important;
    gap: 25px !important;
  }
  .cards-container > div {
    flex: 1 1 100% !important;
    min-width: 100% !important;
  }
}

/*# sourceMappingURL=main.css.map */