*{
    padding: 0;
    margin: 0;
}
body {
      background-color: #f8f9fa;
      font-family: Arial, sans-serif;
    }

    .policy-section {
      padding: 60px 0;
    }

    .policy-card {
      background: #fff;
      padding: 40px;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

    .policy-title {
      color: #2c5c86;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .policy-subtitle {
      color: #666;
      font-size: 14px;
      margin-bottom: 25px;
    }

    .policy-card h5 {
      margin-top: 20px;
      color: #2c5c86;
      font-weight: 600;
    }

    .policy-card p {
      color: #555;
      font-size: 15px;
      line-height: 1.7;
    }

    /* Back Button */
    .back-btn {
      display: inline-block;
      margin-bottom: 20px;
      text-decoration: none;
      color: #2c5c86;
      font-weight: 500;
      transition: 0.3s;
    }

    .back-btn:hover {
      color: #1a3f5f;
    }

    /* Responsive */
    @media (max-width: 576px) {
      .policy-card {
        padding: 25px;
      }

      .policy-title {
        font-size: 24px;
      }
    }