.privacy-terms {
  padding: 60px 0;
  min-height: calc(100vh - 200px);
}

.page-header {
  text-align: center;
  margin-bottom: 60px;
}

.page-header h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.page-header p {
  font-size: 16px;
  color: var(--text-gray);
}

.content {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 48px;
}

.section {
  margin-bottom: 48px;
}

.section:last-child {
  margin-bottom: 0;
}

.section h2 {
  font-size: 32px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border-color);
}

.section h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 32px;
  margin-bottom: 16px;
}

.section p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 16px;
}

.section ul {
  margin-left: 24px;
  margin-bottom: 24px;
}

.section li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 8px;
}

.section a {
  color: var(--primary-blue);
  font-weight: 500;
}

.section a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 32px;
  }

  .content {
    padding: 32px 24px;
  }

  .section h2 {
    font-size: 24px;
  }

  .section h3 {
    font-size: 18px;
  }
}

