h1{
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 60px;
}
h2{
  font-size: 16px;
  font-weight: 600;
}
h3{
  font-size: 14px;
  font-weight: 600;
}
.blog.faq ul li {
  display: block;
  margin-right: 10px;
}
/* ... existing styles ... */

/* Table Styles */
.single-post-content table {
  width: 100%;
  margin: 20px 0;
  border-collapse: collapse;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

.single-post-content table td,
.single-post-content table th {
  padding: 12px 15px;
  border: 1px solid #ddd;
  text-align: left;
}

.single-post-content table tr:first-child {
  background-color: #f8f9fa;
  color: #333;
  font-weight: bold;
}

.single-post-content table tr:nth-child(even) {
  background-color: #f8f9fa;
}

.single-post-content table tr:hover {
  background-color: #f5f5f5;
  transition: background-color 0.3s ease;
}

/* 响应式表格 */
@media screen and (max-width: 768px) {
  .single-post-content table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}