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

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #1f1f1f;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

header {
  background: #1f1f1f;
  color: white;
  padding: 15px 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
}

.btn-nav {
  background: #1e3a5f;
  padding: 8px 15px;
  border-radius: 4px;
}

.hero {
  background: #1e3a5f;
  color: white;
  padding: 100px 0;
  text-align: center;
}

.btn-primary {
  display: inline-block;
  background: #1e3a5f;
  color: white;
  padding: 10px 20px;
  margin-top: 20px;
  text-decoration: none;
  border-radius: 4px;
}

.section {
  padding: 60px 0;
}

.section.alt {
  background: #f4f4f4;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.trust-strip {
  background: #f4f4f4;
  padding: 20px 0;
  text-align: center;
  font-weight: bold;
}

.cta {
  background: #1e3a5f;
  color: white;
  text-align: center;
  padding: 60px 0;
}

footer {
  background: #1f1f1f;
  color: white;
  text-align: center;
  padding: 20px 0;
}

.timeline {
  margin-top: 20px;
}

.timeline li {
  margin-bottom: 10px;
}
.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    background: #111;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.contact-card h3 {
    margin-bottom: 15px;
}

.final-cta {
    margin-top: 60px;
    text-align: center;
}