.policy-page {
    padding: 60px 20px;
    max-width: 800px;
    margin: auto;
}

.policy-page h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.policy-page h2 {
    font-size: 1.5rem;
    margin-top: 30px;
    color: var(--accent-color);
}

.policy-page p,
.policy-page ul {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.policy-page a.back-link {
    display: inline-block;
    margin-top: 30px;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

.policy-page a.back-link:hover {
    text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(109, 41, 50, 0.9);
  color: white;
  padding: 1rem 2rem;
  font-size: 14px;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  animation: fadeInUp 0.5s ease forwards;
}

.cookie-banner a {
  color: #fff5f7;
  text-decoration: underline;
  margin-left: 5px;
}

.cookie-banner button {
  background-color: #fdf2f2;
  color: #6d2932;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s;
}

.cookie-banner button:hover {
  background-color: #e8b4b4;
  color: white;
}

@keyframes fadeInUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}