.privacy-wrapper {
  max-width: 1000px;
  margin: 4rem auto;
  padding: 3rem;
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  line-height: 1.7;
  font-size: 1.1rem;
  font-family: "Georgia", "Times New Roman", serif;
  color: #2c3e50;
  border: 1px solid #e8eef5;
}

.privacy-wrapper h1 {
  font-size: 3rem;
  font-weight: 600;
  color: #1a365d;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  font-family: "Arial", sans-serif;
}

.privacy-wrapper h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #3182ce, #4299e1);
  border-radius: 2px;
}

.privacy-wrapper h2 {
  font-size: 1.75rem;
  font-weight: 500;
  margin: 3rem 0 1.5rem 0;
  color: #2b6cb0;
  font-family: "Arial", sans-serif;
  border-left: 5px solid #4299e1;
  padding-left: 1rem;
  background: linear-gradient(90deg, #edf2f7, transparent);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  border-radius: 0 8px 8px 0;
}

.privacy-wrapper p {
  margin-bottom: 1.5rem;
  text-align: justify;
  color: #2d3748;
}

.privacy-wrapper a {
  color: #3182ce;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.privacy-wrapper a:hover {
  color: #2c5282;
  border-bottom-color: #2c5282;
  background-color: rgba(49, 130, 206, 0.05);
  padding: 2px 4px;
  border-radius: 4px;
}

.privacy-wrapper ul {
  padding-left: 0;
  margin-bottom: 2rem;
  list-style: none;
}

.privacy-wrapper li {
  margin-bottom: 1rem;
  padding: 1rem 1.5rem;
  background: #f7fafc;
  border-left: 4px solid #4299e1;
  border-radius: 0 8px 8px 0;
  position: relative;
  transition: all 0.3s ease;
}

.privacy-wrapper li:hover {
  background: #edf2f7;
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.privacy-wrapper li::before {
  content: "✓";
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  background: #4299e1;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: bold;
}

.privacy-wrapper .return-home-btn {
  display: inline-block;
  margin-bottom: 2rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #4299e1, #3182ce);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(66, 153, 225, 0.3);
}

.privacy-wrapper .return-home-btn:hover {
  background: linear-gradient(135deg, #3182ce, #2c5282);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(66, 153, 225, 0.4);
  border-bottom: none;
  padding: 0.75rem 1.5rem;
}

.privacy-wrapper .disclaimer {
  background: linear-gradient(135deg, #fff5f5, #fed7d7);
  border: 2px solid #fc8181;
  border-left: 6px solid #e53e3e;
  color: #c53030;
  padding: 1.5rem;
  font-size: 1rem;
  margin-top: 3rem;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 4px 12px rgba(229, 62, 62, 0.1);
}

.privacy-wrapper .disclaimer::before {
  content: "⚠️";
  position: absolute;
  top: -12px;
  left: 20px;
  background: #fff5f5;
  padding: 0 8px;
  font-size: 1.2rem;
}

.privacy-wrapper .copyright-disclaimer {
  margin-top: 2rem;
  padding: 1.5rem;
  background: #f0f4f8;
  border-left: 4px solid #90cdf4;
  border-radius: 0 8px 8px 0;
  font-size: 0.95rem;
  color: #2d3748;
  font-style: italic;
}

/* Enhanced mobile responsiveness */
@media (max-width: 768px) {
  .privacy-wrapper {
    margin: 2rem 1rem;
    padding: 2rem 1.5rem;
  }

  .privacy-wrapper h1 {
    font-size: 2.2rem;
  }

  .privacy-wrapper h2 {
    font-size: 1.4rem;
  }

  .privacy-wrapper p {
    text-align: left;
  }

  .privacy-wrapper li {
    padding: 0.8rem 1rem;
  }
}
