/* Privacy Policy Page Styles */

/* Hero Section */
.privacy-hero {
  padding: 15px 0 10px;
}

.privacy-hero .hero-copy {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.privacy-hero h1 {
  font-size: 42px;
  line-height: 1.2;
  margin: 0 0 16px;
  color: #ffffff;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.privacy-hero p {
  font-size: 18px;
  color: #e8ecf5;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Content Section */
.privacy-content {
  background: var(--bg);
  padding: 60px 0;
}

.privacy-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.privacy-intro h2 {
  font-size: 32px;
  color: var(--blue-900);
  margin: 0 0 8px;
  text-align: center;
}

.last-updated {
  text-align: center;
  color: var(--muted);
  margin: 0 0 40px;
  font-style: italic;
}

/* Policy Sections */
.policy-section {
  margin: 0 0 32px;
  padding: 24px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.policy-section h3 {
  font-size: 22px;
  color: var(--blue-900);
  margin: 0 0 16px;
  border-bottom: 2px solid var(--red-600);
  padding-bottom: 8px;
}

.policy-section p {
  margin: 0 0 16px;
  line-height: 1.6;
  color: var(--text);
}

.policy-section p:last-child {
  margin-bottom: 0;
}

.policy-section ul {
  margin: 16px 0;
  padding-left: 24px;
}

.policy-section li {
  margin: 8px 0;
  line-height: 1.6;
  color: var(--text);
}

.policy-section strong {
  color: var(--blue-900);
  font-weight: 600;
}

/* Contact Info Section */
.contact-info {
  background: var(--blue-50);
  border-left: 4px solid var(--red-600);
  padding: 24px;
}

.contact-info h3 {
  color: var(--red-600);
  border-bottom-color: var(--red-600);
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.contact-info li {
  margin: 12px 0;
  padding: 8px 0;
  border-bottom: 1px solid #e1e8ed;
}

.contact-info li:last-child {
  border-bottom: none;
}

.contact-info a {
  color: var(--red-600);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-info a:hover {
  color: var(--red-700);
  text-decoration: underline;
}

/* Links within content */
.policy-section a {
  color: var(--red-600);
  text-decoration: none;
  transition: color 0.2s ease;
}

.policy-section a:hover {
  color: var(--red-700);
  text-decoration: underline;
}

/* Responsive Design */

/* Tablet (max-width: 960px) */
@media (max-width: 960px) {
  .privacy-hero {
    padding: 12px 0 8px;
  }

  .privacy-hero h1 {
    font-size: 38px;
  }

  .privacy-content {
    padding: 50px 0;
  }

  .privacy-intro h2 {
    font-size: 30px;
  }

  .policy-section h3 {
    font-size: 21px;
  }

  .policy-section {
    padding: 20px;
    margin: 0 0 28px;
  }
}

/* Mobile (max-width: 720px) */
@media (max-width: 720px) {
  .privacy-hero {
    padding: 10px 0 8px;
  }

  .privacy-hero h1 {
    font-size: 32px;
    line-height: 1.3;
  }

  .privacy-hero p {
    font-size: 16px;
  }

  .privacy-content {
    padding: 40px 0;
  }

  .privacy-intro h2 {
    font-size: 28px;
  }

  .policy-section h3 {
    font-size: 20px;
  }

  .policy-section p {
    font-size: 15px;
  }

  .contact-info {
    padding: 20px;
  }

  .policy-section {
    padding: 16px;
    margin: 0 0 24px;
  }

  .privacy-wrapper {
    padding: 0 16px;
  }
}

/* Extra Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
  .privacy-hero {
    padding: 8px 0 5px;
  }

  .privacy-hero h1 {
    font-size: 28px;
    line-height: 1.4;
  }

  .privacy-hero p {
    font-size: 15px;
  }

  .privacy-content {
    padding: 30px 0;
  }

  .privacy-intro h2 {
    font-size: 24px;
  }

  .policy-section h3 {
    font-size: 18px;
  }

  .policy-section p {
    font-size: 14px;
  }

  .contact-info {
    padding: 16px;
  }

  .policy-section {
    padding: 12px;
    margin: 0 0 20px;
  }

  .privacy-wrapper {
    padding: 0 12px;
  }
}
