body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  margin: 0;
  padding: 0;
  color: #333;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
  font-size: 28px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  margin: 15px 0 0 0;
}

nav ul li {
  margin-right: 25px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 8px 15px;
  border-radius: 20px;
}

nav ul li a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.privacy-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
  padding: 80px 0;
  margin-bottom: 0;
}

.privacy-hero h1 {
  font-size: 3.5rem;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out;
}

.privacy-hero p {
  font-size: 1.2rem;
  margin-top: 20px;
  opacity: 0.9;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.privacy-container {
  max-width: 1000px;
  margin: -50px auto 50px;
  background: #fff;
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.privacy-container::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #667eea, #764ba2, #667eea);
  border-radius: 22px;
  z-index: -1;
  opacity: 0.1;
}

.section {
  margin-bottom: 40px;
  padding: 30px;
  background: #f8f9fb;
  border-radius: 15px;
  border-left: 5px solid #667eea;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.section h2 {
  color: #667eea;
  font-size: 1.8rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  font-weight: 600;
}

.section h2::before {
  content: "🔒";
  margin-right: 10px;
  font-size: 1.5rem;
}

.section:nth-child(2) h2::before {
  content: "📋";
}
.section:nth-child(3) h2::before {
  content: "⚙️";
}
.section:nth-child(4) h2::before {
  content: "🍪";
}
.section:nth-child(5) h2::before {
  content: "🔐";
}
.section:nth-child(6) h2::before {
  content: "🛡️";
}
.section:nth-child(7) h2::before {
  content: "🔗";
}
.section:nth-child(8) h2::before {
  content: "📝";
}
.section:nth-child(9) h2::before {
  content: "📞";
}

.section p {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.8;
}

.section ul {
  color: #555;
  padding-left: 0;
}

.section ul li {
  background: white;
  margin: 10px 0;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  list-style: none;
  position: relative;
  padding-left: 50px;
}

.section ul li::before {
  content: "✓";
  position: absolute;
  left: 20px;
  color: #667eea;
  font-weight: bold;
  font-size: 1.2rem;
}

.contact-highlight {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  margin-top: 40px;
}

.contact-highlight a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 15px;
}

.contact-highlight a:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .privacy-hero h1 {
    font-size: 2.5rem;
  }

  .privacy-container {
    margin: -30px 20px 30px;
    padding: 30px 20px;
  }

  .section {
    padding: 20px;
    margin-bottom: 25px;
  }

  nav ul {
    flex-direction: column;
  }

  nav ul li {
    margin: 5px 0;
  }
}
