.policy-page {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  background: #f5f5f7;
  min-height: calc(100vh - 200px);
  padding: 4rem 0;
}

.policy-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.policy-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #d2d2d7;
}

.policy-title {
  font-size: 48px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.policy-subtitle {
  font-size: 17px;
  color: #6e6e73;
  margin: 0;
}

.policy-content {
  background: white;
  border-radius: 18px;
  padding: 3rem;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.policy-intro {
  font-size: 18px;
  line-height: 1.6;
  color: #1d1d1f;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e5e5e5;
}

.policy-section {
  margin-bottom: 2.5rem;
}

.policy-section:last-of-type {
  margin-bottom: 0;
}

.section-title {
  font-size: 24px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.subsection-title {
  font-size: 18px;
  font-weight: 600;
  color: #1d1d1f;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.policy-section p {
  font-size: 16px;
  line-height: 1.7;
  color: #424245;
  margin-bottom: 1rem;
}

.policy-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem 0;
}

.policy-list li {
  font-size: 16px;
  line-height: 1.7;
  color: #424245;
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
}

.policy-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #0066cc;
  font-weight: bold;
  font-size: 20px;
}

.policy-list li strong {
  color: #1d1d1f;
  font-weight: 600;
}

.contact-info {
  background: #f5f5f7;
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
  font-size: 16px;
  color: #424245;
}

.contact-info p:last-child {
  margin-bottom: 0;
}

.contact-info strong {
  color: #1d1d1f;
  font-weight: 600;
}

.contact-info a {
  color: #0066cc;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-info a:hover {
  color: #0055b3;
  text-decoration: underline;
}

.policy-footer-note {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid #e5e5e5;
  text-align: center;
}

.policy-footer-note p {
  font-size: 15px;
  color: #6e6e73;
  font-style: italic;
  margin: 0;
}

@media (max-width: 768px) {
  .policy-page {
    padding: 2rem 0;
  }

  .policy-container {
    padding: 0 1rem;
  }

  .policy-title {
    font-size: 36px;
  }

  .policy-content {
    padding: 2rem 1.5rem;
    border-radius: 12px;
  }

  .section-title {
    font-size: 20px;
  }

  .subsection-title {
    font-size: 16px;
  }

  .policy-intro {
    font-size: 16px;
  }

  .policy-section p,
  .policy-list li {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .policy-title {
    font-size: 32px;
  }

  .policy-content {
    padding: 1.5rem 1rem;
  }

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

  .subsection-title {
    font-size: 15px;
  }
}

