body {
  margin: 0;
  font-family: system-ui, sans-serif;
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
}
.hero {
  background: #003049;
  color: white;
  padding: 4rem 1rem;
  text-align: center;
}
.hero h1 {
  margin: 0;
  font-size: 2.5rem;
}
.hero h2 {
  font-weight: normal;
  margin-top: 0.5rem;
}
.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background: #f77f00;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}
.section {
  padding: 2rem 1rem;
  max-width: 800px;
  margin: auto;
}
.section h3 {
  margin-top: 0;
  font-size: 1.5rem;
  color: #003049;
}
.section ul {
  list-style: none;
  padding-left: 1rem;
}
.section ul li::before {
  content: "✔️ ";
  margin-right: 0.5rem;
  color: #2a9d8f;
}
.section ol {
  list-style: none;
  padding-left: 1rem;
}
.section ol li::before {
  content: "⇒ ";
  margin-right: 0.5rem;
  color: #000000;
}
footer {
  text-align: center;
  padding: 1rem;
  background: #eee;
  color: #555;
}
.profile-pic {
  margin-top: 1rem;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid white;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.language-toggle {
  position: absolute;
  top: 1rem;
  right: 1rem;
}
.language-toggle button {
  margin-left: 0.5rem;
  padding: 0.4rem 0.8rem;
  font-weight: bold;
  cursor: pointer;
}
