* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

.hero {
  background: url("/images/hero.webp") no-repeat center center;
  background-size: cover;
  background-position: center center;
  color: white;
  padding: 100px 10%;
  text-align: center;
  position: relative;
  min-height: 500px;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

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

.qa-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 30px auto 0;
}

.qa-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 12px;
  border: 2px solid rgba(255, 204, 0, 0.3);
  transition: all 0.3s ease;
}

.qa-card:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffcc00;
  transform: translateY(-5px);
}

.qa-btn {
  background: #ffcc00;
  color: #002D62;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1rem;
  display: inline-block;
  margin-bottom: 15px;
}

.cta-top {
  padding: 60px 10%;
  background: linear-gradient(135deg, #001f3f 0%, #002D62 100%);
  color: white;
  text-align: center;
}

.trust-banner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 30px 10%;
  background: #f9f9f9;
  border-top: 3px solid #ffcc00;
  border-bottom: 3px solid #ffcc00;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-col {
  font-weight: bold;
  color: #002D62;
  font-size: 1rem;
}

.trust-center {
  text-align: center;
}

.trust-center img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  margin-bottom: 10px;
}

.btn-call {
  display: inline-block;
  background: #ffcc00;
  color: #002D62;
  padding: 15px 35px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-call:hover {
  background: #002D62;
  color: #ffcc00;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

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