body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.6;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.logo { height: 60px; }

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}
.cta {
  background: #007BFF;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 4px;
  cursor: pointer;
}

.hero {
  text-align: center;
  padding: 120px 20px 100px;
  background: linear-gradient(to bottom, #ffffff, #f4f9ff);
}
.hero h1 { font-size: 48px; color: #002B45; margin-bottom: 10px; }
.hero p { font-size: 18px; margin: 20px auto; width: 70%; color: #444; }
.btn-primary, .btn-secondary {
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 4px;
  margin: 10px;
  display: inline-block;
}
.btn-primary { background: #007BFF; color: #fff; }
.btn-secondary { border: 1px solid #007BFF; color: #007BFF; }

.about, .solutions, .trusted, .testimonials, .contact {
  text-align: center;
  padding: 80px 20px;
}
.about h2, .solutions h2, .trusted h2, .testimonials h2, .contact h2 {
  font-size: 32px;
  color: #002B45;
  margin-bottom: 20px;
}

.solutions .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: auto;
}
.solutions div {
  background: #f9fbff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
}

.trusted .logos span {
  display: inline-block;
  margin: 10px 20px;
  color: #777;
  font-weight: 500;
}

.testimonials blockquote {
  font-style: italic;
  background: #f4f8ff;
  padding: 30px;
  border-radius: 8px;
  max-width: 700px;
  margin: auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}
.testimonials cite {
  display: block;
  margin-top: 10px;
  font-weight: 600;
  color: #007BFF;
}

.contact form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
}
.contact input, .contact textarea {
  margin: 8px 0;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.contact textarea { min-height: 120px; }
.contact button {
  margin-top: 10px;
  padding: 12px;
  background: #007BFF;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.form-status { display: none; color: #28a745; margin-top: 10px; }

footer {
  background: #002B45;
  color: #fff;
  padding: 25px;
  text-align: center;
}
