/* Privacy Policy Styles */

/* Import shared styles */
@import '../../shared/variables.css';
@import '../../shared/components.css';
@import '../../shared/utilities.css';
@import '../../shared/base.css';

/* Main Container */
.privacy_page {
  width: 100%;
  min-height: 100vh;
  background: #fff;
  position: relative;
}


/* Hero Section */
.privacy-heading-bg {
  background: #fff;
  padding: 60px 0 40px;
  text-align: center;
  position: relative;
  border-bottom: 2px solid #000;
}

.heading-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.privacy-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: bold;
  color: #000;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.privacy-subhead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #333;
  margin-bottom: 2rem;
  font-weight: normal;
  line-height: 1.6;
  font-style: italic;
}

.effective-date {
  background: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 1rem 2rem;
  display: inline-block;
  margin: 0 auto;
}

.effective-date p {
  color: #000;
  font-size: 0.9rem;
  font-weight: normal;
  margin: 0;
}

/* Main Content Container */
.dropdown-container-wrapper {
  background: #fff;
  min-height: 100vh;
  padding: 0;
}

.dropdown-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
  background: #fff;
  position: relative;
}

/* Table of Contents */
.toc-section {
  background: #fff;
  margin: 40px 20px;
  padding: 30px;
  border: 2px solid #000;
  position: relative;
}

.toc-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 1.5rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.toc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 8px;
  margin-top: 1.5rem;
}

.toc-item {
  display: block;
  padding: 10px 15px;
  background: #fff;
  text-decoration: none;
  color: #000;
  font-weight: normal;
  font-size: 0.9rem;
  border: 1px solid #ccc;
  transition: background-color 0.2s ease;
}

.toc-item:hover {
  background: #f0f0f0;
  color: #000;
}

.toc-item.active {
  background: #e0e0e0;
  color: #000;
  font-weight: bold;
}

/* Privacy Content */
.privacy-content {
  padding: 0 20px 60px;
  background: #fff;
}

.privacy-section {
  background: #fff;
  margin-bottom: 40px;
  padding: 30px;
  border: 1px solid #000;
  position: relative;
}

.section-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.subsection {
  margin: 1.5rem 0;
  padding-left: 1rem;
  border-left: 2px solid #ccc;
}

.subsection-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.privacy-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #000;
  margin-bottom: 1rem;
  text-align: justify;
}

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

.privacy-list li {
  position: relative;
  padding: 4px 0 4px 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: #000;
}

.privacy-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 4px;
  color: #000;
  font-size: 1rem;
  font-weight: bold;
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin: 2rem 0;
}

.contact-item {
  background: #fff;
  padding: 20px;
  border: 1px solid #ccc;
  position: relative;
}

.contact-item h4 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-item p {
  font-size: 0.9rem;
  margin: 0;
  color: #000;
  line-height: 1.4;
}

.contact-item a {
  color: #000;
  text-decoration: underline;
}

.mailing-address {
  background: #f5f5f5;
  padding: 25px;
  margin-top: 2rem;
  border: 1px solid #ccc;
}

.mailing-address h4 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mailing-address p {
  font-size: 1rem;
  line-height: 1.6;
  color: #000;
  margin: 0;
}



/* Responsive Design */
@media (max-width: 768px) {
  .privacy-heading {
    font-size: 1.8rem;
  }

  .privacy-subhead {
    font-size: 1rem;
  }

  .toc-section {
    margin: 30px 10px;
    padding: 25px 15px;
  }

  .toc-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .privacy-content {
    padding: 0 10px 40px;
  }

  .privacy-section {
    padding: 25px 15px;
    margin-bottom: 30px;
  }

  .section-title {
    font-size: 1.2rem;
  }

  .subsection-title {
    font-size: 1rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }

  .privacy-heading-bg {
    padding: 40px 0 30px;
  }

  .effective-date {
    padding: 0.8rem 1.2rem;
  }

  .effective-date p {
    font-size: 0.8rem;
  }

  .toc-section {
    margin: 20px 5px;
    padding: 20px 10px;
  }

  .privacy-section {
    padding: 20px 10px;
  }

  .subsection {
    padding-left: 0.5rem;
  }

  .contact-item {
    padding: 15px;
  }

  .mailing-address {
    padding: 20px 15px;
  }
}

/* Accessibility Features */
@media (prefers-reduced-motion: reduce) {
  * {
    transition-duration: 0.01ms !important;
  }
}

@media (prefers-contrast: high) {
  .privacy-section {
    border: 3px solid #000;
  }

  .toc-item {
    border: 2px solid #000;
  }

  .contact-item {
    border: 2px solid #000;
  }
}

/* Focus States for Keyboard Navigation */
.toc-item:focus {
  outline: 2px solid #000;
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .privacy_page {
    background: white !important;
  }

  .privacy-heading-bg {
    background: white !important;
    color: black !important;
    padding: 20px 0 !important;
    border-bottom: 2px solid #000 !important;
  }

  .privacy-heading,
  .privacy-subhead {
    color: black !important;
  }

  .toc-section {
    border: 1px solid #000 !important;
    page-break-inside: avoid;
  }

  .privacy-section {
    border: 1px solid #000 !important;
    page-break-inside: avoid;
    margin-bottom: 20px !important;
  }
}
