/* プライバシーポリシーページ专用样式 */
.privacy-container {
  max-width: 1000px;
  margin: 30px auto;
  padding: 0 20px;
  background-color: white;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.privacy-header {
  padding: 30px 0 20px;
  border-bottom: 1px solid #eaeaea;
  text-align: center;
}

.privacy-header h1 {
  color: #095f70;
  font-size: 2em;
  margin-bottom: 10px;
}

.update-date {
  color: #666;
  font-size: 14px;
}

.privacy-content {
  padding: 30px 0;
}

.privacy-intro {
  margin-bottom: 30px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 5px;
  border-left: 4px solid #1ba1ff;
}

.privacy-intro p {
  margin: 0;
  line-height: 1.8;
}

.privacy-section {
  margin-bottom: 30px;
}

.privacy-section h2 {
  color: #095f70;
  font-size: 18px;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eaeaea;
}

.privacy-clause {
  padding-left: 10px;
}

.privacy-clause p {
  margin-bottom: 15px;
  line-height: 1.7;
}

.company-info {
  background-color: #f0f8ff;
  padding: 20px;
  border-radius: 5px;
  margin: 30px 0;
  border-left: 4px solid #ff1d1c;
}

.company-info p {
  margin-bottom: 10px;
}

.contact-info {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dashed #ccc;
}

.contact-info h3 {
  color: #095f70;
  margin-bottom: 10px;
  font-size: 16px;
}

.table-section {
  margin: 20px 0;
}

.table-section h3 {
  color: #333;
  margin-bottom: 10px;
  font-size: 16px;
}

.info-table {
  display: table;
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 15px;
}

.table-row {
  display: table-row;
}

.table-header {
  font-weight: bold;
  background-color: #f5f5f5;
}

.table-cell {
  display: table-cell;
  padding: 12px 15px;
  border: 1px solid #ddd;
  vertical-align: top;
}

.table-cell:first-child {
  width: 30%;
  background-color: #f9f9f9;
}

.table-note {
  font-size: 14px;
  color: #666;
  font-style: italic;
}

.country-section {
  margin: 20px 0;
  padding: 15px;
  background-color: #f9f9f9;
  border-radius: 5px;
}

.country-section h3 {
  color: #333;
  margin-bottom: 8px;
  font-size: 16px;
}

.subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
  font-style: italic;
}

.reference {
  font-size: 14px;
  color: #1ba1ff;
  margin-top: 5px;
}

.contact-section {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 2px solid #eaeaea;
}

.contact-section h2 {
  color: #095f70;
  font-size: 18px;
  margin-bottom: 20px;
}

.contact-table {
  display: table;
  width: 100%;
  border-collapse: collapse;
}

.contact-row {
  display: table-row;
}

.contact-cell {
  display: table-cell;
  padding: 15px;
  border: 1px solid #ddd;
  vertical-align: top;
}

.contact-header {
  width: 20%;
  background-color: #f5f5f5;
  font-weight: bold;
}

/* 响应式设计 */
@media screen and (max-width: 767px) {
  .privacy-container {
    margin: 15px auto;
    padding: 0 15px;
  }
  
  .privacy-header {
    padding: 20px 0 15px;
  }
  
  .privacy-header h1 {
    font-size: 20px;
  }
  
  .privacy-content {
    padding: 20px 0;
  }
  
  .privacy-section h2 {
    font-size: 16px;
  }
  
  .table-cell, .contact-cell {
    padding: 8px 10px;
    font-size: 14px;
  }
  
  .table-cell:first-child, .contact-header {
    width: 35%;
  }
  
  .info-table, .contact-table {
    display: block;
  }
  
  .table-row, .contact-row {
    display: block;
    margin-bottom: 10px;
  }
  
  .table-cell, .contact-cell {
    display: block;
    width: 100% !important;
  }
  
  .table-header {
    display: none;
  }
}