/* privacy-public.css - Styles for public privacy policy pages */

body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
  background: #f7f7fa;
  color: #222;
}

.privacy-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.privacy-header {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #222;
  font-size: 1.3rem;
  font-weight: bold;
  gap: 0.5rem;
}

.logo-img {
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.privacy-main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background: #f7f7fa;
  padding: 2rem 1rem;
}

.privacy-article {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  padding: 2.5rem 2rem;
  max-width: 720px;
  width: 100%;
}

.privacy-article h1 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: #b45309;
}

.privacy-article h2 {
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  color: #2563eb;
}

.privacy-article ul {
  margin: 1rem 0 1.5rem 1.5rem;
  padding-left: 1.2rem;
}

.privacy-article li {
  margin-bottom: 0.3rem;
  line-height: 1.6;
}

.privacy-article p {
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

.privacy-article hr {
  margin: 2rem 0;
  border: none;
  border-top: 1px solid #e5e7eb;
}

.privacy-footer {
  background: #fff;
  border-top: 1px solid #e5e7eb;
  text-align: center;
  padding: 1.2rem 0;
  font-size: 0.98rem;
  color: #666;
}

.last-update {
  text-align: right;
  color: #999;
  font-size: 0.95rem;
  margin-top: 2rem;
}

@media (max-width: 600px) {
  .privacy-article {
    padding: 1.2rem 0.5rem;
  }
  .privacy-main {
    padding: 1rem 0.2rem;
  }
}
