.logo-img {
  height: 60px;
  vertical-align: middle;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  color: #333;
  padding-top: 80px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #bad9c4;
  padding: 20px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 2px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: #333333;
  font-weight: bold;
  transition: box-shadow 0.2s;
}

.nav-links li a:hover {
  box-shadow: 0 4px 12px #616161;
}

footer {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  background-color: #bad9c4;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 100;
}

.footer-left,
.footer-right {
  font-weight: bold;
}

main {
  min-height: 60vh;
  padding-bottom: 60px;
  padding-top: 30px;
}

h2 {
  text-align: center;
  margin-top: 1rem;
  font-size: 2rem;
}

p {
  max-width: 700px;
  margin: 2rem auto;
  font-size: 1.1rem;
  line-height: 1.7;
  text-align: left;
}
