* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  background-color: #f4f8fb;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
header {
  background: linear-gradient(135deg, #0d3b66, #0a192f);
  color: white;
  padding: 3em 0;
  text-align: center;
}

header h1 {
  font-size: 2.5em;
  margin-bottom: 0.5em;
}

/* Features */
.features {
  padding: 3em 1em;
  background: #fff;
  text-align: center;
}

.feature-box {
  background: #f0f4f8;
  padding: 2em;
  margin-bottom: 1.5em;
  border-radius: 10px;
  box-shadow: 0 0 5px rgba(0,0,0,0.05);
}

@media (min-width: 768px) {
  .features .container {
    display: flex;
    gap: 1.5em;
    justify-content: space-between;
  }
}

/* Help Center */
.help-center {
  padding: 3em 1em;
  background-color: #f9fbfc;
  text-align: center;
}

.help-center h2 {
  font-size: 2em;
  color: #003d6a;
  margin-bottom: 1.5em;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2em;
  max-width: 1000px;
  margin: 0 auto;
}

.help-box {
  background: #ffffff;
  padding: 1.5em;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.help-box:hover {
  transform: translateY(-5px);
}

.help-box img {
  width: 60px;
  margin-bottom: 1em;
  border-radius: 8px;
  object-fit: contain;
  filter: drop-shadow(0 0 0.5px #6d2883);
}

.help-box h3 {
  font-size: 1.1em;
  color: #222;
  margin-bottom: 0.5em;
}

.help-box p {
  font-size: 0.95em;
  color: #555;
  line-height: 1.5;
}

/* REVIEWS */
.reviews {
  background: #ffffff;
  padding: 3em 0;
  text-align: center;
}

.review-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.5em;
}

.review-card {
  background: #f0f2f5;
  padding: 1.5em;
  border-radius: 8px;
  width: 300px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.review-card p {
  font-style: italic;
  margin-bottom: 0.5em;
}

.review-card span {
  font-weight: bold;
  color: #004b8a;
}

/* Trust */
.trust {
  background: #fff;
  padding: 3em 1em;
}

.trust-box,
.testimonial-box {
  background: #f9f9f9;
  padding: 1.5em;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  margin-bottom: 1.5em;
}

.testimonial-box input,
.testimonial-box textarea {
  width: 100%;
  padding: 0.7em;
  margin-top: 0.8em;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: inherit;
}

.testimonial-box button {
  margin-top: 1em;
  background: #003d6a;
  color: #fff;
  padding: 0.6em 1.2em;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.testimonial-box button:hover {
  background: #005588;
}

/* Footer */
footer {
  background: #0a192f;
  color: white;
  text-align: center;
  padding: 1em;
}