/* Privacy Policy Specific Styles */

/* Privacy Policy Content */
.privacy-section {
  min-height: 100vh;
  padding: 120px 0 80px;
  position: relative;
  z-index: 1;
}

.privacy-container {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

.privacy-header {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.9), rgba(30, 64, 175, 0.9));
  color: white;
  padding: 4rem 3rem 3rem;
  text-align: center;
  backdrop-filter: blur(10px);
}

.privacy-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.privacy-header p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 0;
}

.privacy-content {
  padding: 3rem;
  line-height: 1.8;
  color: #374151;
}

.privacy-content h2 {
  color: #2563eb;
  font-weight: 700;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid #e5e7eb;
  font-size: 1.75rem;
}

.privacy-content h3 {
  color: #4b5563;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.privacy-content p {
  margin-bottom: 1.5rem;
  text-align: justify;
  font-size: 1.05rem;
}

.privacy-content ul {
  margin-bottom: 2rem;
  padding-left: 2.5rem;
}

.privacy-content li {
  margin-bottom: 1rem;
  text-align: justify;
}

.highlight-box {
  background: linear-gradient(135deg, rgba(219, 234, 254, 0.9), rgba(191, 219, 254, 0.9));
  border-left: 5px solid #2563eb;
  padding: 2rem;
  margin: 3rem 0;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.1);
}

.contact-box {
  background: linear-gradient(135deg, rgba(240, 253, 244, 0.9), rgba(220, 252, 231, 0.9));
  border: 2px solid rgba(187, 247, 208, 0.5);
  padding: 3rem;
  border-radius: 15px;
  margin: 3rem 0;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(5, 150, 105, 0.1);
}

.contact-box h3 {
  color: #059669;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.effective-date {
  background: rgba(249, 250, 251, 0.9);
  border: 2px solid rgba(229, 231, 235, 0.5);
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 3rem;
  text-align: center;
  font-style: italic;
  color: #6b7280;
  backdrop-filter: blur(10px);
}

.blockchain-info {
  background: linear-gradient(135deg, rgba(254, 243, 199, 0.9), rgba(253, 230, 138, 0.9));
  border: 2px solid rgba(245, 158, 11, 0.3);
  padding: 2rem;
  border-radius: 15px;
  margin: 3rem 0;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.1);
}

.blockchain-info h4 {
  color: #92400e;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.data-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.data-type-card {
  background: rgba(248, 250, 252, 0.9);
  border: 2px solid rgba(226, 232, 240, 0.5);
  padding: 2rem;
  border-radius: 15px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.data-type-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-color: rgba(37, 99, 235, 0.3);
}

.data-type-card h4 {
  color: #2563eb;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.back-btn {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: white;
  border: none;
  padding: 1rem 3rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  margin-top: 3rem;
  font-size: 1.1rem;
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.back-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4);
  color: white;
  text-decoration: none;
}

/* Animation classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Smooth scrolling enhancement */
.section {
  scroll-margin-top: 100px;
}

/* Content Section */
.content-section {
  padding: 120px 0 80px;
  color: white;
  position: relative;
  z-index: 1;
}

.content-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.content-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(45deg, #fff, #ffd700);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.content-subtitle {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 4rem;
  opacity: 0.9;
  line-height: 1.6;
}

.policy-content {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  line-height: 1.8;
  font-size: 1rem;
}

.policy-content h2 {
  color: #ffd700;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 2rem 0 1rem;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 0.5rem;
}

.policy-content h3 {
  color: #ffd700;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 1.5rem 0 0.8rem;
}

.policy-content p {
  margin-bottom: 1rem;
  opacity: 0.9;
}

.policy-content ul, .policy-content ol {
  margin: 1rem 0;
  padding-left: 2rem;
}

.policy-content li {
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.policy-content strong {
  color: #ffd700;
  font-weight: 600;
}

.policy-content a {
  color: #ffd700;
  text-decoration: underline;
  transition: all 0.3s ease;
}

.policy-content a:hover {
  color: white;
  text-decoration: none;
}

.last-updated {
  text-align: center;
  margin-top: 3rem;
  padding: 1.5rem;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  font-style: italic;
  opacity: 0.8;
}

/* Back to Home Button */
.back-to-home {
  text-align: center;
  margin-top: 3rem;
}

.btn-back-home {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  border: none;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.btn-back-home::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn-back-home:hover::before {
  left: 100%;
}

.btn-back-home:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
  color: white;
}

/* Responsive Design for Privacy Policy */

/* Large screens (1200px and up) */
@media (min-width: 1200px) {
  .content-container {
    max-width: 900px;
  }
  
  .content-title {
    font-size: 3rem;
  }
  
  .policy-content {
    padding: 4rem;
    font-size: 1.1rem;
  }
}

/* Medium screens (768px to 1199px) */
@media (min-width: 768px) and (max-width: 1199px) {
  .content-title {
    font-size: 2.2rem;
  }
  
  .policy-content {
    padding: 2.5rem;
  }
}

/* Small screens (576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
  .content-section {
    padding: 100px 0 60px;
  }
  
  .content-container {
    padding: 0 1.5rem;
  }
  
  .content-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .content-subtitle {
    font-size: 1.1rem;
    margin-bottom: 3rem;
  }
  
  .policy-content {
    padding: 2rem;
    font-size: 0.95rem;
  }
  
  .policy-content h3 {
    font-size: 1.1rem;
  }
  
  .btn-back-home {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

/* Extra small screens (480px to 575px) */
@media (min-width: 480px) and (max-width: 575px) {
  .content-section {
    padding: 80px 0 50px;
  }
  
  .content-container {
    padding: 0 1rem;
  }
  
  .content-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
  
  .content-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .policy-content {
    padding: 1.5rem;
    font-size: 0.9rem;
  }
  
  .policy-content h2 {
    font-size: 1.3rem;
  }
  
  .policy-content h3 {
    font-size: 1rem;
  }
  
  .policy-content ul, .policy-content ol {
    padding-left: 1.5rem;
  }
  
  .last-updated {
    padding: 1rem;
    font-size: 0.9rem;
  }
  
  .btn-back-home {
    padding: 10px 25px;
    font-size: 0.95rem;
  }
}

/* Very small screens (up to 479px) */
@media (max-width: 479px) {
  .content-section {
    padding: 70px 0 40px;
  }
  
  .content-container {
    padding: 0 0.5rem;
  }
  
  .content-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    line-height: 1.3;
  }
  
  .content-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
  }
  
  .policy-content {
    padding: 1rem;
    font-size: 0.85rem;
    line-height: 1.6;
  }
  
  .policy-content h2 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem;
  }
  
  .policy-content h3 {
    font-size: 0.95rem;
    margin: 1.2rem 0 0.6rem;
  }
  
  .policy-content p {
    margin-bottom: 0.8rem;
  }
  
  .policy-content ul, .policy-content ol {
    padding-left: 1.2rem;
    margin: 0.8rem 0;
  }
  
  .policy-content li {
    margin-bottom: 0.4rem;
  }
  
  .last-updated {
    padding: 0.8rem;
    font-size: 0.85rem;
    margin-top: 2rem;
  }
  
  .btn-back-home {
    padding: 8px 20px;
    font-size: 0.9rem;
    margin-top: 2rem;
  }
}

/* Landscape orientation for small screens */
@media (max-height: 500px) and (orientation: landscape) {
  .content-section {
    padding: 60px 0 30px;
  }
  
  .content-title {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
  }
  
  .content-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  
  .policy-content {
    padding: 1rem;
    font-size: 0.8rem;
  }
  
  .policy-content h2 {
    font-size: 1.1rem;
    margin: 1rem 0 0.5rem;
  }
  
  .policy-content h3 {
    font-size: 0.9rem;
    margin: 0.8rem 0 0.4rem;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .btn-back-home:hover {
    transform: none;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
  }
  
  .btn-back-home:active {
    transform: scale(0.98);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
  }
  
  .data-type-card:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  }
  
  .data-type-card:active {
    transform: scale(0.98);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .btn-back-home::before {
    transition: none;
  }
  
  .data-type-card {
    transition: none;
  }
  
  .back-btn {
    transition: none;
  }
}

/* Mobile Responsiveness for Privacy Content */
@media (max-width: 768px) {
  .privacy-section {
    padding: 100px 15px 60px;
  }

  .privacy-container {
    border-radius: 15px;
    margin: 0 10px;
  }

  .privacy-header {
    padding: 3rem 2rem 2rem;
  }

  .privacy-header h1 {
    font-size: 2rem;
  }

  .privacy-content {
    padding: 2rem 1.5rem;
  }

  .data-types {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .privacy-content h2 {
    font-size: 1.5rem;
  }

  .privacy-content h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .privacy-header h1 {
    font-size: 1.8rem;
  }

  .privacy-header p {
    font-size: 1rem;
  }

  .privacy-content {
    padding: 1.5rem 1rem;
  }
} 