:root {
  --navy: #000A2C;
  --white: #ffffff;
  --gray: #f4f6fb;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
}

body {
  background: var(--white);
  color: var(--navy);
  line-height: 1.6;
}

header {
  background: var(--navy);
  color: var(--white);
  padding: 2.5rem 1.5rem;
}

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

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

nav a {
  color: var(--white);
  text-decoration: none;
  margin-left: 1.5rem;
  font-size: 0.95rem;
}

.hero {
  max-width: 700px;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.cta {
  display: inline-block;
  background: var(--white);
  color: var(--navy);
  padding: 0.8rem 1.6rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

section {
  padding: 4rem 1.5rem;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--gray);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
}

.feature-card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.feature-card p {
  font-size: 0.95rem;
  opacity: 0.85;
}

.map-section {
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.map-section p {
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

footer {
  background: var(--navy);
  color: var(--white);
  padding: 2rem 1.5rem;
  text-align: center;
  font-size: 0.9rem;
}

footer span {
  opacity: 0.7;
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 2.2rem;
  }
}