/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

body {
  line-height: 1.6;
  color: #222;
  background-color: #fff;
}

/* Header */
header {
  background: #0a3d62;
  color: white;
  padding: 20px;
  text-align: center;
}

header h1 {
  font-size: 2rem;
  margin-bottom: 8px;
}

header nav a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
  font-weight: 500;
}

header nav a:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero {
  padding: 80px 20px;
  text-align: center;
  background: #f6f8fa;
}

.hero h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.hero p {
  max-width: 600px;
  margin: 0 auto 25px;
  font-size: 1.1rem;
  color: #444;
}

.hero button {
  padding: 12px 24px;
  font-size: 1rem;
  background: #0a3d62;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.hero button:hover {
  background: #145a8a;
}

/* Sections */
section {
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
}

section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #0a3d62;
}

section p {
  margin-bottom: 15px;
  color: #333;
}

/* Footer */
footer {
  background: #0a3d62;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}