body {
    font-family: "Inter", sans-serif;
    line-height: 1.7;
    color: #333;
    margin: 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #d1e1f0 100%);
    min-height: 100vh;
  }

  .policy-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 25px;
    padding: 1rem 2rem;
  }

  h1 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2.5rem;
    position: relative;
  }

  h1::after {
    content: "";
    display: block;
    width: 120px;
    height: 4px;
    background: #3498db;
    margin: 1rem auto 0;
    border-radius: 2px;
  }

  .policy-section {
    margin-bottom: 2rem;
  }

  .section-title {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
  }

  .section-title i {
    margin-right: 0.75rem;
    color: #3498db;
  }

  .policy-content {
    margin-left: 2.5rem;
    margin-bottom: 1rem;
  }

  .policy-list {
    list-style: none;
    padding-left: 1.5rem;
  }

  .policy-list li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.75rem;
  }

  .policy-list li::before {
    content: "•";
    color: #3498db;
    position: absolute;
    left: 0;
    font-weight: bold;
  }

  @media (max-width: 768px) {
    

    .policy-container {
      padding: 2rem 1rem;
      border-radius: 15px;
    }

    h1 {
      font-size: 2rem;
    }
  }