/* 隐私政策页面样式 */

html, body {
    min-height: 100%;
    overflow-y: auto !important;
    position: relative;
  }
  body {
    padding-bottom: 40px; /* 确保底部有足够空间 */
  }

.content-container {
  max-width: 800px;
  margin: 40px auto;
  padding: 30px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.logo-container {
  text-align: center;
  margin-bottom: 25px;
}

.site-logo {
  width: 80px;
  height: 80px;
  transition: transform 0.3s ease;
}

.site-logo:hover {
  transform: scale(1.05);
}

.privacy-content {
  text-align: left;
  line-height: 1.7;
  color: #333;
  font-size: 16px;
}

h1 {
  color: #2d2d2d;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
  font-size: 2rem;
}

h2 {
  color: #444;
  margin-top: 30px;
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  font-weight: 500;
}

.privacy-content p {
  margin-bottom: 16px;
}

.privacy-content ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.privacy-content li {
  margin-bottom: 8px;
}

.privacy-content strong {
  color: #333;
}

.contact-info {
  margin-top: 20px;
  padding: 15px;
  background-color: #f9f9f9;
  border-radius: 5px;
  border-left: 4px solid #0066cc;
}

.email-link {
  color: #0066cc;
  text-decoration: none;
  transition: color 0.2s ease;
}

.email-link:hover {
  color: #004c99;
  text-decoration: underline;
}

.back-link {
  display: block;
  margin-top: 40px;
  text-align: center;
  color: #666;
  text-decoration: none;
  padding: 10px;
  transition: all 0.2s ease;
}

.back-link:hover {
  color: #333;
  text-decoration: none;
  background-color: #f5f5f5;
  border-radius: 4px;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .content-container {
    padding: 20px;
    margin: 20px;
    width: auto;
  }
  
  h1 {
    font-size: 1.8rem;
  }
}
