body {
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    Segoe UI,
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  background-color: #f0f2f5;
  margin: 0;
  padding: 0;
  color: #333;
}
.privacy-policy-container {
  max-width: 1000px;
  margin: 20px auto;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px #0000001a;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 90vh;
}
.policy-header {
  display: flex;
  align-items: center;
  padding: 16px;
  background-color: #fff;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 10;
}
.back-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-right: 12px;
}
.policy-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  color: #2c3e50;
}
.policy-content-scroll {
  flex-grow: 1;
  padding: 24px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.policy-effective-date {
  font-style: italic;
  color: #777;
  font-size: 0.9rem;
  margin-bottom: 20px;
}
.policy-intro {
  margin-bottom: 15px;
  line-height: 1.6;
}
.policy-divider {
  border: 0;
  height: 1px;
  background-color: #e0e0e0;
  margin: 24px 0;
}
.policy-section-heading {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 10px;
  color: #1a5276;
}
.policy-section p {
  line-height: 1.6;
  margin-bottom: 15px;
}
.policy-section ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 15px;
}
.policy-section ul li {
  margin-bottom: 8px;
  line-height: 1.5;
}
.policy-section ul li strong {
  color: #34495e;
}
.policy-footer {
  display: flex;
  justify-content: space-around;
  padding: 16px;
  border-top: 1px solid #e0e0e0;
  background-color: #fff;
  position: sticky;
  bottom: 0;
  z-index: 10;
}
.accept-button,
.decline-button {
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.accept-button {
  background-color: #3498db;
  color: #fff;
}
.accept-button:hover {
  background-color: #2980b9;
}
.decline-button {
  background-color: #ecf0f1;
  color: #333;
}
.decline-button:hover {
  background-color: #d5d9dc;
}
