
.privacy-policy * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', 'Segoe UI', sans-serif;
}

/* 应用您指定的主色调 */
:root {
  --primary: #8B5A2B;      /* 深棕木色 - 主色调 */
  --primary-light: #A07848; /* 浅棕色（主色调变体） */
  --secondary: #FCFAF5;    /* 米白色 - 次要色调 */
  --tertiary: #EDF2F7;     /* 浅灰色 - 第三色调 */
  --text-dark: #3D372C;     /* 深棕文字色 */
  --text-medium: #6B6251;   /* 中棕文字色 */
  --shadow: rgba(139, 90, 43, 0.1); /* 统一阴影色调 */
}

.policy-header {
  width: 100%;
  padding: 50px 20px;
  background: linear-gradient(135deg, 
    var(--primary) 0%, 
    var(--primary-light) 100%
  );
  text-align: center;
  color: var(--secondary);
}

.policy-header h1 {
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  max-width: 1200px;
  margin: 0 auto;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 30px;
  background-color: var(--secondary);
  line-height: 1.8;
  color: var(--text-medium);
}

.intro-paragraph {
  font-size: 1.05rem;
  margin-bottom: 40px;
  color: var(--text-dark);
}

.policy-section {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(139, 90, 43, 0.1);
}

.policy-section:last-child {
  border-bottom: none;
}

.policy-section h2 {
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.policy-subsection {
  margin-bottom: 25px;
}

.policy-subsection:last-child {
  margin-bottom: 0;
}

.policy-subsection h3 {
  color: var(--primary-light);
  font-size: 1.1rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.policy-subsection p {
  font-size: 0.98rem;
  margin-left: 15px;
}

.contact-section {
  margin-top: 50px;
  padding: 30px;
  background-color: var(--tertiary);
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px var(--shadow);
}

.contact-section a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.3s;
}

.contact-section a:hover {
  color: var(--primary-light);
}

@media (max-width: 768px) {
  .policy-header h1 {
    font-size: 1.8rem;
  }
  
  .policy-content {
    padding: 40px 20px;
  }
  
  .policy-section h2 {
    font-size: 1.3rem;
  }
}
