body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f5f5f5;
  color: #333;
}

header {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 2rem;
}

.logo-area {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem; /* space between logo and name */
  margin-bottom: 1rem;
}

.logo-area img {
  width: 120px;       /* change size if needed */
  height: 120px;
  object-fit: cover;
  border-radius: 50%; /* remove this line if you *don’t* want it circular */
}


nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  background: #111;
  padding: 1rem;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

main {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.section {
  margin-bottom: 2rem;
}

footer {
  text-align: center;
  padding: 1rem;
  background: #222;
  color: #fff;
  margin-top: 2rem;
}
