/* Base styles */
body {
  margin: 0;
  font-family: "Helvetica Neue", sans-serif;
  line-height: 1.6;
  background-color: #ffffff;
  color: #0a0a23;
}

/* Header */
.site-header {
  background-color: #000814;
  padding: 20px;
  text-align: center;
}

.site-logo {
  max-height: 80px;
}

/* Hero */
.hero {
  background: linear-gradient(to right, #001f3f, #003566);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 2.5em;
}

.hero p {
  font-size: 1.2em;
  margin: 20px 0;
}

.btn {
  background: white;
  color: #001f3f;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

/* Features */
.features {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.features h2 {
  margin-bottom: 40px;
  color: #001f3f;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.feature {
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Contact */
.contact {
  background-color: #f0f0f0;
  padding: 40px 20px;
  text-align: center;
}

.contact h2 {
  margin-bottom: 20px;
}

.contact ul {
  list-style: none;
  padding: 0;
}

.contact li {
  margin: 10px 0;
}

/* Footer */
footer {
  background: #000814;
  color: white;
  text-align: center;
  padding: 20px;
}
