/* Privacy Policy Styles */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #eef5ef 0%, #d1e5db 100%);
  color: #2c3e2d;
  line-height: 1.6;
  min-height: 100vh;
}

.page-container {
  max-width: 900px;
  margin: 2rem auto;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(44, 62, 45, 0.12);
  overflow: hidden;
  animation: slideUp 0.8s ease-out;
}

.header {
  background: linear-gradient(135deg, #4a7c59 0%, #5d9e6b 50%, #7bb885 100%);
  padding: 2.5rem 2rem;
  text-align: center;
  color: #ffffff;
}

.header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header .subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  font-weight: 300;
}

.content {
  padding: 3rem 2.5rem;
}

.section {
  margin-bottom: 2.5rem;
}

.section h2 {
  color: #4a7c59;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1rem;
  padding-left: 1rem;
  border-left: 5px solid #7bb885;
  position: relative;
}

.section h2::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, #7bb885, #4a7c59);
  border-radius: 3px;
}

.section p {
  font-size: 1rem;
  color: #3a4a3b;
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

.section ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.section li {
  color: #4a5a4b;
  margin-bottom: 0.7rem;
  font-size: 0.95rem;
  position: relative;
}

.section li::marker {
  color: #7bb885;
}

.alert-box {
  background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
  border-left: 6px solid #ff9800;
  padding: 1.5rem 1.8rem;
  border-radius: 12px;
  margin: 2rem 0;
  box-shadow: 0 4px 15px rgba(255, 152, 0, 0.15);
  position: relative;
}

.alert-box::before {
  content: "⚠️";
  font-size: 1.5rem;
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.alert-box p {
  margin-left: 2rem;
  color: #5a3800;
  font-size: 0.95rem;
  margin-bottom: 0;
}

.alert-box strong {
  color: #bf360c;
  font-weight: 600;
}

.back-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #4a7c59 0%, #7bb885 100%);
  color: #ffffff;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  box-shadow: 0 8px 20px rgba(74, 124, 89, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 2rem;
}

.back-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(74, 124, 89, 0.4);
  background: linear-gradient(135deg, #3d6b4c 0%, #6b9978 100%);
}

.back-button:active {
  transform: translateY(0);
}

.back-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.back-button:hover .back-arrow {
  transform: translateX(-3px);
}

.last-updated {
  text-align: center;
  font-size: 0.85rem;
  color: #6a7a6b;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e8f0e9;
}

/* Animations */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-container {
    margin: 1rem;
    border-radius: 15px;
  }

  .header {
    padding: 2rem 1.5rem;
  }

  .header h1 {
    font-size: 2rem;
  }

  .content {
    padding: 2rem 1.5rem;
  }

  .section h2 {
    font-size: 1.4rem;
  }

  .section p,
  .section li {
    font-size: 0.9rem;
  }

  .alert-box {
    padding: 1.2rem 1.5rem;
  }

  .alert-box p {
    margin-left: 1.5rem;
  }

  .back-button {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .header h1 {
    font-size: 1.7rem;
  }

  .header .subtitle {
    font-size: 1rem;
  }

  .section h2 {
    font-size: 1.3rem;
  }
}
