/* style.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", "Roboto", "Helvetica", "Arial", sans-serif;
  line-height: 1.6;
  color: #222;
  background-color: #f7f9fc;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

.hero {
  background-color: #003366;
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.pi {
  font-size: 0.95em;
  font-style: italic;
  opacity: 0.9;
}

.hero p {
  font-size: 1.1em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.btn {
  display: inline-block;
  background-color: #ff6600;
  color: white;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #e65b00;
}

section {
  padding: 50px 0;
  border-bottom: 1px solid #e0e0e0;
}

section:last-child {
  border-bottom: none;
}

h2 {
  font-size: 1.8em;
  margin-bottom: 20px;
  color: #003366;
}

ul {
  margin: 0 0 20px 30px;
}

ul li {
  margin-bottom: 10px;
}

footer {
  background-color: #002244;
  color: #ccc;
  padding: 20px 0;
  text-align: center;
  font-size: 0.95em;
}