/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner__content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.cookie-banner__content p {
  flex: 1;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}
.cookie-banner__content p a {
  color: #c0392b;
  text-decoration: underline;
  font-weight: bold;
}
.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-banner__actions button {
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid #c0392b;
  transition: all 0.2s ease;
}
.cookie-banner__actions .btn-accept {
  background: #c0392b;
  color: #fff;
}
.cookie-banner__actions .btn-accept:hover {
  background: #c0392b;
  border-color: #c0392b;
}
.cookie-banner__actions .btn-reject {
  background: transparent;
  color: #c0392b;
}
.cookie-banner__actions .btn-reject:hover {
  background: #c0392b;
  color: #fff;
}
@media (max-width: 640px) {
  .cookie-banner__content {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }
  .cookie-banner__actions {
    width: 100%;
  }
  .cookie-banner__actions button {
    flex: 1;
  }
}

/* Policy pages */
.policy-content {
  max-width: 800px;
  margin: 80px auto 40px;
  padding: 0 20px;
}
.policy-content h1 {
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 20px;
}
.policy-content h2 {
  font-size: 1.3em;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
}
.policy-content h3 {
  font-size: 1.1em;
  font-weight: 500;
  margin-top: 20px;
  margin-bottom: 10px;
}
.policy-content p,
.policy-content li {
  color: #666;
  line-height: 1.7;
  margin-bottom: 10px;
}
.policy-content ul {
  padding-left: 25px;
  margin-bottom: 15px;
}
.policy-content a {
  color: #c0392b;
}
.policy-back {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 15px 0;
  font-size: 14px;
}
.cookie-table th,
.cookie-table td {
  padding: 10px 15px;
  text-align: left;
  border-bottom: 1px solid #eee;
}
.cookie-table th {
  font-weight: 600;
  color: #333;
  background: #f9f9f9;
}
.cookie-table td {
  color: #666;
}

/* Footer links */
.footer-links {
  margin-top: 10px;
  font-size: 14px;
}
.footer-links a {
  color: rgba(255,255,255,0.85);
  margin: 0 10px;
}
.footer-links a:hover {
  color: #fff;
}
