/* Privacy Page Styles */

.privacy-main {
  min-height: calc(100vh - 400px);
  padding: var(--spacing-2xl) 0;
}

.privacy-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.privacy-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
  animation: slideDown 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.privacy-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: var(--radius-2xl);
  color: var(--white);
  font-size: 2.5rem;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.privacy-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.last-updated {
  font-size: 0.9375rem;
  color: var(--gray-500);
  font-style: italic;
}

.privacy-content {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: var(--spacing-xl);
  border: 2px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
  animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.privacy-section {
  margin-bottom: var(--spacing-xl);
  padding-bottom: var(--spacing-xl);
  border-bottom: 2px solid var(--gray-100);
}

.privacy-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.privacy-section h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--spacing-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.privacy-section h2::before {
  content: '';
  width: 4px;
  height: 1.5rem;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.privacy-section p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 1rem;
}

.privacy-section p:last-child {
  margin-bottom: 0;
}

.privacy-section ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.privacy-section ul li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
}

.privacy-section ul li:last-child {
  border-bottom: none;
}

.privacy-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  background: var(--gradient-primary);
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.privacy-section ul li::after {
  content: '✓';
  position: absolute;
  left: 0.3125rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-weight: 700;
  font-size: 0.75rem;
}

.privacy-section ul li strong {
  font-weight: 700;
  color: var(--gray-900);
}

.contact-info {
  background: var(--gradient-soft);
  border: 2px solid rgba(92, 138, 65, 0.2);
  border-radius: var(--radius-xl);
  padding: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
}

.contact-info p:last-child {
  margin-bottom: 0;
}

.contact-info i {
  color: var(--primary-green);
  font-size: 1.125rem;
}

.contact-info a {
  color: var(--primary-green);
  transition: color var(--transition-fast);
}

.contact-info a:hover {
  color: var(--primary-orange);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .privacy-content {
    padding: var(--spacing-lg);
  }
  
  .privacy-section h2 {
    font-size: 1.25rem;
  }
  
  .privacy-section p,
  .privacy-section ul li {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .privacy-icon {
    width: 64px;
    height: 64px;
    font-size: 2rem;
  }
  
  .privacy-header h1 {
    font-size: 1.75rem;
  }
  
  .privacy-content {
    padding: var(--spacing-md);
  }
  
  .contact-info {
    padding: var(--spacing-sm);
  }
  
  .contact-info p {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}