body {
  background-color: #0d0d0d;
  color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  padding: 3rem;
}

.legal-page {
  max-width: 800px;
  margin: auto;
  position: relative;
}

.back-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #00ff88;
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.back-button:hover {
  color: #00cc6a;
  transform: translateX(-3px);
}

.legal-page h1 {
  color: #00ff88;
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
}

.legal-page h2 {
  color: #00ff88;
  margin-top: 2.5rem;
  font-size: 1.5rem;
  border-bottom: 1px solid #333;
  padding-bottom: 0.5rem;
}

.legal-page h3 {
  color: #00cc6a;
  margin-top: 1.5rem;
  font-size: 1.2rem;
  font-weight: 500;
}

.legal-page p, .legal-page li {
  color: #ccc;
  margin-bottom: 1rem;
}

.last-updated {
  color: #888;
  font-style: italic;
  margin-bottom: 2rem;
}

.contact {
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 1px solid #333;
  font-weight: 500;
}

ul {
  padding-left: 1.8rem;
  margin-bottom: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
  position: relative;
}

li::before {
  content: "•";
  color: #00ff88;
  font-weight: bold;
  display: inline-block; 
  width: 1em;
  margin-left: -1em;
}

.legal-page ul ul {
  padding-left: 1rem;
  margin-top: 0.5rem;
}

.legal-page ul ul li::before {
  content: "◦";
  color: #00cc6a;
}

.cookie-settings {
  background-color: #1a1a1a;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.cookie-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #333;
  transition: .4s;
  border-radius: 34px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .toggle-slider {
  background-color: #00ff88;
}

input:checked + .toggle-slider:before {
  transform: translateX(26px);
}

@media (max-width: 768px) {
  body {
    padding: 1.5rem;
  }
  
  .legal-page h1 {
    font-size: 1.8rem;
  }
  
  .legal-page h2 {
    font-size: 1.3rem;
  }
}

.save-button {
  background-color: #00ff88;
  color: #0d0d0d;
  border: none;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.save-button:hover {
  background-color: #00cc6a;
  transform: translateY(-2px);
}

.save-button:active {
  transform: translateY(0);
}