nav {
  margin-top: 2rem;
  border-top: 1px solid #eee;
  padding-top: 1rem;
  text-align: center;
}
nav a {
  margin: 0 0.5rem;
  color: #FF007F;
  text-decoration: none;
}
nav a:hover {
  text-decoration: underline;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  padding-bottom: 120px; /* Space for cookie banner */
  background-color: #f9f9f9;
}

h1 {
  border-bottom: 2px solid #FF007F;
  padding-bottom: 10px;
  color: #222;
}

h2 {
  color: #000000;
  margin-top: 30px;
}

.container {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

p,
li {
  font-size: 15px;
  color: #555;
}
.highlight {
    background-color: #F5F5F5;
    padding: 10px;
    border-left: 4px solid #FF007F;
    margin: 15px 0;
    border-radius: 4px;
    color: #555;
}

a {
  color: #FF007F;
}

#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  font-size: 14px;
  display: none;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}
#cookie-consent p {
  color: white;
  margin: 0;
  padding-right: 20px;
  flex: 1;
}
.cookie-buttons {
  display: flex;
  gap: 10px;
}
#cookie-consent button {
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  white-space: nowrap;
  transition: opacity 0.2s;
}
#accept-cookies {
  background: #FF007F;
  color: white;
}
#reject-cookies {
  background: #444;
  color: white;
}
#cookie-consent button:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  #cookie-consent {
    flex-direction: column;
    text-align: center;
  }
  #cookie-consent p {
    margin-bottom: 15px;
    padding-right: 0;
  }
}
