/* FULLHOUSE Privacy Page Specific Styles */

/* Enhanced Privacy Section Styles */
.privacy-section {
  padding: 8rem 2rem 6rem;
  background: linear-gradient(135deg, #f6fbff 0%, #e3f0f7 100%);
}

.privacy-section .container {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 191, 255, 0.08);
  padding: 50px;
  border: 1.5px solid #e3f0f7;
  backdrop-filter: blur(2px);
}

.privacy-section section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e3f0f7;
}

.privacy-section section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.privacy-section h2 {
  color: #0a2540;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  position: relative;
  padding-left: 1rem;
}

.privacy-section h2::before {
  content: '💎';
  position: absolute;
  left: -1.5rem;
  top: 0;
  font-size: 1.5rem;
  opacity: 0.8;
}

.privacy-section p {
  color: #333;
  line-height: 1.7;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.privacy-section ul {
  list-style: none;
  padding-left: 0;
}

.privacy-section ul li {
  color: #333;
  line-height: 1.6;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
  font-size: 1rem;
}

.privacy-section ul li::before {
  content: '🔹';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.9rem;
  opacity: 0.7;
}

.privacy-section ul li strong {
  color: #0a2540;
  font-weight: 600;
}

.privacy-section ol {
  padding-left: 1.5rem;
}

.privacy-section ol li {
  color: #333;
  line-height: 1.6;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

/* Enhanced Section Header for Privacy */
.privacy-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #e3f0f7;
}

.privacy-section .section-title {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #00bfff 0%, #00ffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.privacy-section .section-subtitle {
  font-size: 1.2rem;
  color: #333;
  font-style: italic;
}

/* Contact Information Styling */
.privacy-section .contact-info {
  background: linear-gradient(135deg, #f6fbff 0%, #e3f0f7 100%);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #00bfff;
  margin-top: 2rem;
}

.privacy-section .contact-info h3 {
  color: #0a2540;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.privacy-section .contact-info ul {
  list-style: none;
  padding: 0;
}

.privacy-section .contact-info ul li {
  color: #222;
  margin-bottom: 0.5rem;
  padding-left: 0;
}

.privacy-section .contact-info ul li::before {
  display: none;
}

.privacy-section .contact-info ul li strong {
  color: #0a2540;
  font-weight: 600;
  margin-right: 0.5rem;
}

/* Enhanced Typography */
.privacy-section .highlight {
  background: linear-gradient(135deg, #e3f0f7 0%, #f6fbff 100%);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #00bfff;
  margin: 1.5rem 0;
}

.privacy-section .highlight p {
  margin-bottom: 0;
  font-weight: 500;
  color: #222;
}

/* Responsive Design for Privacy Page */
@media (max-width: 768px) {
  .privacy-section {
    padding: 6rem 1rem 4rem;
  }
  
  .privacy-section .container {
    padding: 30px 20px;
    margin: 0 1rem;
  }
  
  .privacy-section .section-title {
    font-size: 2.5rem;
  }
  
  .privacy-section h2 {
    font-size: 1.5rem;
    padding-left: 0.5rem;
  }
  
  .privacy-section h2::before {
    left: -1rem;
    font-size: 1.2rem;
  }
  
  .privacy-section ul li {
    padding-left: 1rem;
  }
  
  .privacy-section ul li::before {
    font-size: 0.8rem;
  }
  
  /* Hide any fixed elements on mobile */
  .table-of-contents,
  .toc-toggle {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .privacy-section .container {
    padding: 25px 15px;
  }
  
  .privacy-section .section-title {
    font-size: 2rem;
  }
  
  .privacy-section h2 {
    font-size: 1.3rem;
  }
  
  .privacy-section p,
  .privacy-section ul li,
  .privacy-section ol li {
    font-size: 0.95rem;
  }
  
  .privacy-section .contact-info {
    padding: 1.5rem;
  }
} 