body {
  background: #fff;
  color: #1D2129;
  font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  margin: 0;
  padding: 0;
}

.header {
  height: 44px;
  line-height: 44px;
  text-align: center;
  font-size: 18px;
  color: #000;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 0.5px solid #EBEDF0;
}

.container {
  max-width: 700px;
  margin: 0 auto;
  padding: 30px 16px 30px 16px;
}

.section-title {
  font-size: 16px;
  font-weight: bold;
  margin: 0px 0 12px 0;
}

.bold {
  font-weight: bold;
}

.blue {
  color: #007AFF;
  cursor: pointer;
  text-decoration: underline;
}

.divider {
  height: 0.5px;
  background: #EBEDF0;
  margin: 0;
  border: none;
}

.gap {
  height: 24px;
}

@media (max-width: 600px) {
  .container {
    padding: 30px 8px 30px 8px;
  }
  .header {
    font-size: 16px;
  }
  .section-title {
    font-size: 15px;
  }
} 